2010-07-28 11:01:17 -07:00
|
|
|
{ stdenv, fetchurl, ghostscript, texinfo, imagemagick, texi2html, guile
|
2016-10-18 13:40:52 -07:00
|
|
|
, python2, gettext, flex, perl, bison, pkgconfig, dblatex
|
2014-06-11 02:00:35 -07:00
|
|
|
, fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff
|
2014-06-11 12:11:04 -07:00
|
|
|
, fetchsvn, makeWrapper, t1utils
|
2015-09-23 12:07:12 -07:00
|
|
|
, texlive, tex ? texlive.combine {
|
|
|
|
inherit (texlive) scheme-small lh metafont epsf;
|
|
|
|
}
|
2014-06-11 12:11:04 -07:00
|
|
|
}:
|
2009-09-10 09:57:56 -07:00
|
|
|
|
2011-01-12 10:19:43 -08:00
|
|
|
stdenv.mkDerivation rec{
|
2014-10-11 15:09:24 -07:00
|
|
|
majorVersion="2.18";
|
2012-08-05 12:08:01 -07:00
|
|
|
minorVersion="2";
|
2011-01-12 10:19:43 -08:00
|
|
|
version="${majorVersion}.${minorVersion}";
|
|
|
|
name = "lilypond-${version}";
|
2009-09-10 09:57:56 -07:00
|
|
|
|
2012-08-05 12:08:01 -07:00
|
|
|
urwfonts = fetchsvn {
|
|
|
|
url = "http://svn.ghostscript.com/ghostscript/tags/urw-fonts-1.0.7pre44";
|
|
|
|
sha256 = "0al5vdsb66db6yzwi0qgs1dnd1i1fb77cigdjxg8zxhhwf6hhwpn";
|
|
|
|
};
|
|
|
|
|
2009-09-10 09:57:56 -07:00
|
|
|
src = fetchurl {
|
2011-01-12 10:19:43 -08:00
|
|
|
url = "http://download.linuxaudio.org/lilypond/sources/v${majorVersion}/lilypond-${version}.tar.gz";
|
2014-10-11 15:09:24 -07:00
|
|
|
sha256 = "01xs9x2wjj7w9appaaqdhk15r1xvvdbz9qwahzhppfmhclvp779j";
|
2009-09-10 09:57:56 -07:00
|
|
|
};
|
|
|
|
|
2012-08-05 12:08:01 -07:00
|
|
|
preConfigure=''
|
|
|
|
sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl
|
2015-12-27 09:42:27 -08:00
|
|
|
|
|
|
|
# At some point our fontforge had path 2n…-fontforge-2015… and it
|
|
|
|
# confused the version detection…
|
|
|
|
sed -re 's%("[$]exe" --version .*)([|\\] *$)%\1 | sed -re "s@/nix/store/[a-z0-9]{32}-@@" \2%' \
|
|
|
|
-i configure
|
2016-03-27 16:00:27 -07:00
|
|
|
|
|
|
|
export HOME=$TMPDIR/home
|
2012-08-05 12:08:01 -07:00
|
|
|
'';
|
|
|
|
|
2013-04-21 00:24:55 -07:00
|
|
|
postInstall = ''
|
2014-06-11 02:00:35 -07:00
|
|
|
for f in "$out/bin/"*; do
|
2015-10-09 05:18:41 -07:00
|
|
|
# Override default argv[0] setting so LilyPond can find
|
|
|
|
# its Scheme libraries.
|
2013-09-28 10:25:25 -07:00
|
|
|
wrapProgram "$f" --set GUILE_AUTO_COMPILE 0 \
|
2015-10-09 05:18:41 -07:00
|
|
|
--set PATH "${ghostscript}/bin" \
|
|
|
|
--argv0 "$f"
|
2013-09-28 10:25:25 -07:00
|
|
|
done
|
2013-04-21 00:24:55 -07:00
|
|
|
'';
|
|
|
|
|
2012-08-05 12:08:01 -07:00
|
|
|
configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${urwfonts}"];
|
2009-09-10 09:57:56 -07:00
|
|
|
|
2010-07-28 11:01:17 -07:00
|
|
|
buildInputs =
|
2015-09-23 12:07:12 -07:00
|
|
|
[ ghostscript texinfo imagemagick texi2html guile dblatex tex zip netpbm
|
2016-10-18 13:40:52 -07:00
|
|
|
python2 gettext flex perl bison pkgconfig fontconfig freetype pango
|
2014-06-11 12:11:04 -07:00
|
|
|
fontforge help2man groff makeWrapper t1utils
|
2010-07-28 11:01:17 -07:00
|
|
|
];
|
2009-09-10 09:57:56 -07:00
|
|
|
|
2017-11-05 10:18:34 -08:00
|
|
|
#enableParallelBuilding = true; # fatal error: parser.hh: No such file or directory
|
2015-09-23 12:07:12 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 11:01:17 -07:00
|
|
|
description = "Music typesetting system";
|
2009-09-10 09:57:56 -07:00
|
|
|
homepage = http://lilypond.org/;
|
2015-09-23 12:07:12 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.marcweber ];
|
2015-10-28 10:41:40 -07:00
|
|
|
platforms = platforms.all;
|
2009-09-10 09:57:56 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./findlib.patch ];
|
|
|
|
}
|