mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #23206 from yurrriq/add/pkgs/misc/lilypond/unstable
lilypond-unstable: init at 2.19.24
This commit is contained in:
commit
1861733b90
20
pkgs/misc/lilypond/unstable.nix
Normal file
20
pkgs/misc/lilypond/unstable.nix
Normal 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 ];
|
||||
|
||||
})
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user