core/pkgs/by-name/li/lilypond/with-fonts.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
405 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{
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
'';
})