Merge pull request #23206 from yurrriq/add/pkgs/misc/lilypond/unstable

lilypond-unstable: init at 2.19.24
This commit is contained in:
Jörg Thalheim 2017-02-27 08:29:12 +01:00 committed by GitHub
commit 1861733b90
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

@ -17574,6 +17574,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 { };