lilypond-unstable: init at 2.19.24

This commit is contained in:
Eric Bailey 2017-01-15 02:16:07 -06:00
parent def0c868ea
commit de597b03f7
No known key found for this signature in database
GPG key ID: 29E1B8D32C1635C4
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, guile, rsync, lilypond }:
with stdenv.lib;
overrideDerivation lilypond (p: rec {
majorVersion = "2.19";
minorVersion = "24";
version="${majorVersion}.${minorVersion}";
name = "lilypond-${version}";
src = fetchurl {
url = "http://download.linuxaudio.org/lilypond/sources/v${majorVersion}/lilypond-${version}.tar.gz";
sha256 = "0wd57swrfc2nvkj10ipdbhq6gpnckiafg2b2kpd8aydsyp248iln";
};
configureFlags = [ "--disable-documentation" "--with-fonts-dir=${p.urwfonts}"];
buildInputs = p.buildInputs ++ [ rsync ];
})

View file

@ -17569,6 +17569,7 @@ with pkgs;
kops = callPackage ../applications/networking/cluster/kops { };
lilypond = callPackage ../misc/lilypond { guile = guile_1_8; };
lilypond-unstable = callPackage ../misc/lilypond/unstable.nix { guile = guile_1_8; };
mailcore2 = callPackage ../development/libraries/mailcore2 { };