c205944161
Fixes #140152. The fix is inspired by how lilypond-with-fonts was packaged in v18.09.
18 lines
396 B
Nix
18 lines
396 B
Nix
{ lib, symlinkJoin, makeWrapper
|
|
, lilypond, openlilylib-fonts
|
|
}:
|
|
|
|
lib.appendToName "with-fonts" (symlinkJoin {
|
|
inherit (lilypond) meta name version ;
|
|
|
|
paths = [ lilypond ] ++ openlilylib-fonts.all;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
for p in $out/bin/*; do
|
|
wrapProgram "$p" --set LILYPOND_DATADIR "$out/share/lilypond/${lilypond.version}"
|
|
done
|
|
'';
|
|
})
|