mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Update Lilypond - this also fixes its build
svn path=/nixpkgs/trunk/; revision=25525
This commit is contained in:
parent
87c5470d94
commit
c05a95f8f6
@ -2,12 +2,15 @@
|
|||||||
, python, gettext, flex, perl, bison, pkgconfig, texLive
|
, python, gettext, flex, perl, bison, pkgconfig, texLive
|
||||||
, fontconfig, freetype, pango, fontforge, help2man }:
|
, fontconfig, freetype, pango, fontforge, help2man }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec{
|
||||||
name = "lilypond-2.13.9";
|
majorVersion="2.13";
|
||||||
|
minorVersion="46";
|
||||||
|
version="${majorVersion}.${minorVersion}";
|
||||||
|
name = "lilypond-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://download.linuxaudio.org/lilypond/sources/v2.13/lilypond-2.13.9.tar.gz;
|
url = "http://download.linuxaudio.org/lilypond/sources/v${majorVersion}/lilypond-${version}.tar.gz";
|
||||||
sha256 = "1x3jz0zbhly4rc07nry3ia3ydd6vislz81gg0ivwfm6f6q0ssk57";
|
sha256 = "370f59d10a3fc74c5790111f7a69e04304eda5384513c95838dda3cc087904e6";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${ghostscript}/share/ghostscript/fonts"];
|
configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${ghostscript}/share/ghostscript/fonts"];
|
||||||
|
Loading…
Reference in New Issue
Block a user