2010-07-28 20:01:17 +02:00
|
|
|
{ stdenv, fetchurl, ghostscript, texinfo, imagemagick, texi2html, guile
|
|
|
|
, python, gettext, flex, perl, bison, pkgconfig, texLive
|
|
|
|
, fontconfig, freetype, pango, fontforge, help2man }:
|
2009-09-10 18:57:56 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-12-25 01:01:31 +01:00
|
|
|
name = "lilypond-2.13.9";
|
2009-09-10 18:57:56 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-12-25 01:01:31 +01:00
|
|
|
url = http://download.linuxaudio.org/lilypond/sources/v2.13/lilypond-2.13.9.tar.gz;
|
|
|
|
sha256 = "1x3jz0zbhly4rc07nry3ia3ydd6vislz81gg0ivwfm6f6q0ssk57";
|
2009-09-10 18:57:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${ghostscript}/share/ghostscript/fonts"];
|
|
|
|
|
2010-07-28 20:01:17 +02:00
|
|
|
buildInputs =
|
|
|
|
[ ghostscript texinfo imagemagick texi2html guile
|
|
|
|
python gettext flex perl bison pkgconfig texLive fontconfig freetype pango
|
|
|
|
fontforge help2man
|
|
|
|
];
|
2009-09-10 18:57:56 +02:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 20:01:17 +02:00
|
|
|
description = "Music typesetting system";
|
2009-09-10 18:57:56 +02:00
|
|
|
homepage = http://lilypond.org/;
|
|
|
|
license = "GPL";
|
2010-07-28 20:01:17 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-10 18:57:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./findlib.patch ];
|
|
|
|
}
|