nixpkgs/pkgs/misc/lilypond/default.nix

51 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, ghostscript, texinfo, imagemagick, texi2html, guile
2012-08-05 19:08:01 +00:00
, python, gettext, flex, perl, bison, pkgconfig, texLive, dblatex
2014-06-11 09:00:35 +00:00
, fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff
2013-04-21 07:24:55 +00:00
, fetchsvn, makeWrapper }:
stdenv.mkDerivation rec{
2013-04-21 07:24:55 +00:00
majorVersion="2.16";
2012-08-05 19:08:01 +00:00
minorVersion="2";
version="${majorVersion}.${minorVersion}";
name = "lilypond-${version}";
2012-08-05 19:08:01 +00:00
urwfonts = fetchsvn {
url = "http://svn.ghostscript.com/ghostscript/tags/urw-fonts-1.0.7pre44";
sha256 = "0al5vdsb66db6yzwi0qgs1dnd1i1fb77cigdjxg8zxhhwf6hhwpn";
};
src = fetchurl {
url = "http://download.linuxaudio.org/lilypond/sources/v${majorVersion}/lilypond-${version}.tar.gz";
2013-04-21 07:24:55 +00:00
sha256 = "1jx11bk3rk3w7bnh0829yy280627ywsvwg6fhdm0fqwkiz7jchqz";
};
2012-08-05 19:08:01 +00:00
preConfigure=''
sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl
'';
2013-04-21 07:24:55 +00:00
postInstall = ''
2014-06-11 09:00:35 +00:00
for f in "$out/bin/"*; do
wrapProgram "$f" --set GUILE_AUTO_COMPILE 0 \
--set PATH "${ghostscript}/bin"
done
2013-04-21 07:24:55 +00:00
'';
2012-08-05 19:08:01 +00:00
configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${urwfonts}"];
buildInputs =
2012-08-05 19:08:01 +00:00
[ ghostscript texinfo imagemagick texi2html guile dblatex zip netpbm
python gettext flex perl bison pkgconfig texLive fontconfig freetype pango
2013-04-21 07:24:55 +00:00
fontforge help2man groff makeWrapper
];
2014-06-11 09:00:35 +00:00
meta = {
description = "Music typesetting system";
homepage = http://lilypond.org/;
license = "GPL";
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
patches = [ ./findlib.patch ];
}