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

18 lines
396 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
'';
})