summary refs log tree commit diff
path: root/pkgs/misc/lilypond/unstable.nix
blob: 5b548038da9f78a3a48b25b4c15a80ea66be058f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ fetchgit, lilypond, ghostscript, gyre-fonts }:

let

  version = "2.19.83";

in

lilypond.overrideAttrs (oldAttrs: {
  inherit version;

  src = fetchgit {
    url = "https://git.savannah.gnu.org/r/lilypond.git";
    rev = "release/${version}-1";
    sha256 = "1ycyx9x76d79jh7wlwyyhdjkyrwnhzqpw006xn2fk35s0jrm2iz0";
  };

  configureFlags = [
    "--disable-documentation"
    "--with-urwotf-dir=${ghostscript}/share/ghostscript/fonts"
    "--with-texgyre-dir=${gyre-fonts}/share/fonts/truetype/"
  ];
})