summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/lilypond
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-07-28 18:01:17 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-07-28 18:01:17 +0000
commitf1598a8941287ed25deca83cc71c72c256089362 (patch)
treeb4735ba022095233ef2ea865de4145faead12f2e /pkgs/misc/lilypond
parentd67aefc19d29a1522b21152f508b90a1c0261c3d (diff)
* More cleanup.
svn path=/nixpkgs/trunk/; revision=22798
Diffstat (limited to 'pkgs/misc/lilypond')
-rw-r--r--pkgs/misc/lilypond/default.nix31
1 files changed, 11 insertions, 20 deletions
diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix
index 76366d66f570..f30bf0a7e748 100644
--- a/pkgs/misc/lilypond/default.nix
+++ b/pkgs/misc/lilypond/default.nix
@@ -1,38 +1,29 @@
-# note: there is a jedit plugin
-args: with args;
+{ stdenv, fetchurl, ghostscript, texinfo, imagemagick, texi2html, guile
+, python, gettext, flex, perl, bison, pkgconfig, texLive
+, fontconfig, freetype, pango, fontforge, help2man }:
stdenv.mkDerivation {
name = "lilypond-2.13.9";
- /*
- # REGION AUTO UPDATE: { name="lilypond"; type = "git"; url = "git://git.sv.gnu.org/lilypond.git"; }
- src= sourceFromHead "lilypond-7d065cae414aac445a40c0c6646c3baf6f358cb3.tar.gz"
- (throw "source not not published yet: lilypond");
- # END
- #preConfigure = "./autogen.sh";
- */
-
src = fetchurl {
url = http://download.linuxaudio.org/lilypond/sources/v2.13/lilypond-2.13.9.tar.gz;
sha256 = "1x3jz0zbhly4rc07nry3ia3ydd6vislz81gg0ivwfm6f6q0ssk57";
};
configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${ghostscript}/share/ghostscript/fonts"];
- # configureFlags = "--disable-documentation";
-
- buildInputs = [
- automake autoconf
- ghostscript texinfo imagemagick texi2html guile texinfo
- python gettext flex perl bison pkgconfig texLive fontconfig freetype pango
- fontforge help2man];
+ buildInputs =
+ [ ghostscript texinfo imagemagick texi2html guile
+ python gettext flex perl bison pkgconfig texLive fontconfig freetype pango
+ fontforge help2man
+ ];
meta = {
- description = "music typesetting system";
+ description = "Music typesetting system";
homepage = http://lilypond.org/;
license = "GPL";
- maintainers = [args.lib.maintainers.marcweber];
- platforms = args.lib.platforms.linux;
+ maintainers = [ stdenv.lib.maintainers.marcweber ];
+ platforms = stdenv.lib.platforms.linux;
};
patches = [ ./findlib.patch ];