nixpkgs/pkgs/misc/lilypond/with-fonts.nix
2021-01-16 17:58:11 +07:00

18 lines
380 B
Nix

{ lib, stdenv, lndir, symlinkJoin, makeWrapper
, lilypond, openlilylib-fonts
}:
lib.appendToName "with-fonts" (symlinkJoin {
inherit (lilypond) meta name version ;
paths = [ lilypond ] ++ openlilylib-fonts.all;
buildInputs = [ makeWrapper lndir ];
postBuild = ''
for p in $out/bin/*; do
wrapProgram "$p" --set LILYPOND_DATADIR "$datadir"
done
'';
})