lilypond: add missing ghostscript path to wrapper

This commit is contained in:
Bjørn Forsman 2013-09-28 19:25:25 +02:00
parent 0350bd3b48
commit 48d3c12304

View File

@ -24,7 +24,10 @@ stdenv.mkDerivation rec{
'';
postInstall = ''
for f in $out/bin/*; do wrapProgram $f --set GUILE_AUTO_COMPILE 0; done
for f in "$out"/bin/*; do
wrapProgram "$f" --set GUILE_AUTO_COMPILE 0 \
--set PATH "${ghostscript}/bin"
done
'';
configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${urwfonts}"];