mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
68a6c0e3e9
lilypond needs the 't1asm' tool from t1utils to build. t1asm used to be provided by texlive-core, but does no more (since texlive-core-2014 update).
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ stdenv, fetchurl, ghostscript, texinfo, imagemagick, texi2html, guile
|
|
, python, gettext, flex, perl, bison, pkgconfig, texLive, dblatex
|
|
, fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff
|
|
, fetchsvn, makeWrapper, t1utils
|
|
}:
|
|
|
|
stdenv.mkDerivation rec{
|
|
majorVersion="2.16";
|
|
minorVersion="2";
|
|
version="${majorVersion}.${minorVersion}";
|
|
name = "lilypond-${version}";
|
|
|
|
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";
|
|
sha256 = "1jx11bk3rk3w7bnh0829yy280627ywsvwg6fhdm0fqwkiz7jchqz";
|
|
};
|
|
|
|
preConfigure=''
|
|
sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl
|
|
'';
|
|
|
|
postInstall = ''
|
|
for f in "$out/bin/"*; do
|
|
wrapProgram "$f" --set GUILE_AUTO_COMPILE 0 \
|
|
--set PATH "${ghostscript}/bin"
|
|
done
|
|
'';
|
|
|
|
configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${urwfonts}"];
|
|
|
|
buildInputs =
|
|
[ ghostscript texinfo imagemagick texi2html guile dblatex zip netpbm
|
|
python gettext flex perl bison pkgconfig texLive fontconfig freetype pango
|
|
fontforge help2man groff makeWrapper t1utils
|
|
];
|
|
|
|
meta = {
|
|
description = "Music typesetting system";
|
|
homepage = http://lilypond.org/;
|
|
license = "GPL";
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
|
|
patches = [ ./findlib.patch ];
|
|
}
|