nixpkgs/pkgs/misc/lilypond/unstable.nix

24 lines
507 B
Nix
Raw Normal View History

{ fetchgit, lilypond, ghostscript, gyre-fonts }:
2017-01-15 08:16:07 +00:00
let
2017-01-15 08:16:07 +00:00
version = "2.19.83";
2017-08-28 19:55:42 +00:00
in
2017-01-15 08:16:07 +00:00
lilypond.overrideAttrs (oldAttrs: {
inherit version;
2017-01-15 08:16:07 +00:00
src = fetchgit {
url = "https://git.savannah.gnu.org/r/lilypond.git";
rev = "release/${version}-1";
sha256 = "1ycyx9x76d79jh7wlwyyhdjkyrwnhzqpw006xn2fk35s0jrm2iz0";
};
2017-01-15 08:16:07 +00:00
configureFlags = [
"--disable-documentation"
"--with-urwotf-dir=${ghostscript}/share/ghostscript/fonts"
"--with-texgyre-dir=${gyre-fonts}/share/fonts/truetype/"
];
2017-01-15 08:16:07 +00:00
})