lilypond: add missing ghostscript path to wrapper
This commit is contained in:
parent
0350bd3b48
commit
48d3c12304
1 changed files with 4 additions and 1 deletions
|
@ -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}"];
|
||||
|
|
Loading…
Reference in a new issue