lilypond: add missing ghostscript path to wrapper

This commit is contained in:
Bjørn Forsman
2013-09-28 21:07:48 +02:00
parent 0350bd3b48
commit 48d3c12304
+4 -1
View File
@@ -24,7 +24,10 @@ stdenv.mkDerivation rec{
''; '';
postInstall = '' 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}"]; configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${urwfonts}"];