unoconv: fix reference to libreoffice (#47847)

This commit is contained in:
Vincent Laporte 2018-10-05 14:03:20 +00:00 committed by xeji
parent a5d6705e20
commit 9db397351a

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, python3, libreoffice, asciidoc, makeWrapper
{ stdenv, fetchurl, python3, libreoffice-unwrapped, asciidoc, makeWrapper
# whether to install odt2pdf/odt2doc/... symlinks to unoconv
, installSymlinks ? true
}:
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
postInstall = ''
sed -i "s|/usr/bin/env python.*|${python3}/bin/${python3.executable}|" "$out/bin/unoconv"
wrapProgram "$out/bin/unoconv" --set UNO_PATH "${libreoffice}/lib/libreoffice/program/"
wrapProgram "$out/bin/unoconv" --set UNO_PATH "${libreoffice-unwrapped}/lib/libreoffice/program/"
'' + (if installSymlinks then ''
make install-links prefix="$out"
'' else "");