Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / misc / lilypond / with-fonts.nix
blob2cfd1519795d9158cc516f3ca7011e0dfe88c0f8
1 { lib, symlinkJoin, makeWrapper
2 , lilypond, openlilylib-fonts
3 }:
5 lib.appendToName "with-fonts" (symlinkJoin {
6   inherit (lilypond) meta name version ;
8   paths = [ lilypond ] ++ openlilylib-fonts.all;
10   nativeBuildInputs = [ makeWrapper ];
12   postBuild = ''
13     for p in $out/bin/*; do
14         wrapProgram "$p" --set LILYPOND_DATADIR "$out/share/lilypond/${lilypond.version}"
15     done
16   '';