2020-03-13 23:34:09 +00:00
|
|
|
{ stdenv, lib, fetchurl, ghostscript, gyre-fonts, texinfo, imagemagick, texi2html, guile
|
2019-04-20 21:30:13 +00:00
|
|
|
, python2, gettext, flex, perl, bison, pkgconfig, autoreconfHook, dblatex
|
2014-06-11 09:00:35 +00:00
|
|
|
, fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff
|
2019-06-10 08:08:09 +00:00
|
|
|
, makeWrapper, t1utils
|
2015-09-23 19:07:12 +00:00
|
|
|
, texlive, tex ? texlive.combine {
|
|
|
|
inherit (texlive) scheme-small lh metafont epsf;
|
|
|
|
}
|
2014-06-11 19:11:04 +00:00
|
|
|
}:
|
2009-09-10 16:57:56 +00:00
|
|
|
|
2020-03-13 23:34:09 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-10 08:08:09 +00:00
|
|
|
pname = "lilypond";
|
2020-03-13 23:34:09 +00:00
|
|
|
version = "2.20.0";
|
2012-08-05 19:08:01 +00:00
|
|
|
|
2020-03-13 23:34:09 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
|
|
|
|
sha256 = "0qd6pd4siss016ffmcyw5qc6pr2wihnvrgd4kh1x725w7wr02nar";
|
2009-09-10 16:57:56 +00:00
|
|
|
};
|
|
|
|
|
2020-10-01 03:30:26 +00:00
|
|
|
patches = [
|
|
|
|
./findlib.patch
|
|
|
|
(fetchurl {
|
|
|
|
name = "CVE-2020-17353.patch";
|
|
|
|
url = "https://git.savannah.gnu.org/gitweb/?p=lilypond.git;a=commitdiff_plain;h=b84ea4740f3279516905c5db05f4074e777c16ff;hp=b97bd35ac99efd68569327f62f3c8a19511ebe43";
|
|
|
|
sha256 = "1i79gy3if070rdgj7j6inw532j0f6ya5qc6kgcnlkbx02rqrhr7v";
|
|
|
|
})
|
|
|
|
];
|
2020-03-13 23:34:09 +00:00
|
|
|
|
2013-04-21 07:24:55 +00:00
|
|
|
postInstall = ''
|
2014-06-11 09:00:35 +00:00
|
|
|
for f in "$out/bin/"*; do
|
2015-10-09 12:18:41 +00:00
|
|
|
# Override default argv[0] setting so LilyPond can find
|
|
|
|
# its Scheme libraries.
|
2013-09-28 17:25:25 +00:00
|
|
|
wrapProgram "$f" --set GUILE_AUTO_COMPILE 0 \
|
2015-10-09 12:18:41 +00:00
|
|
|
--set PATH "${ghostscript}/bin" \
|
|
|
|
--argv0 "$f"
|
2013-09-28 17:25:25 +00:00
|
|
|
done
|
2013-04-21 07:24:55 +00:00
|
|
|
'';
|
|
|
|
|
2019-06-10 08:08:09 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-documentation"
|
2020-03-13 23:34:09 +00:00
|
|
|
# FIXME: these URW fonts are not OTF, configure reports "URW++ OTF files... no".
|
|
|
|
"--with-urwotf-dir=${ghostscript}/share/ghostscript/fonts"
|
|
|
|
"--with-texgyre-dir=${gyre-fonts}/share/fonts/truetype/"
|
2019-06-10 08:08:09 +00:00
|
|
|
];
|
2009-09-10 16:57:56 +00:00
|
|
|
|
2019-04-20 21:30:13 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl
|
|
|
|
export HOME=$TMPDIR/home
|
|
|
|
'';
|
|
|
|
|
2020-03-13 23:34:09 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook bison flex makeWrapper pkgconfig ];
|
2019-04-20 21:30:13 +00:00
|
|
|
|
2010-07-28 18:01:17 +00:00
|
|
|
buildInputs =
|
2015-09-23 19:07:12 +00:00
|
|
|
[ ghostscript texinfo imagemagick texi2html guile dblatex tex zip netpbm
|
2020-03-13 23:34:09 +00:00
|
|
|
python2 gettext perl fontconfig freetype pango
|
2019-04-20 21:30:13 +00:00
|
|
|
fontforge help2man groff t1utils
|
2010-07-28 18:01:17 +00:00
|
|
|
];
|
2009-09-10 16:57:56 +00:00
|
|
|
|
2020-03-13 23:34:09 +00:00
|
|
|
autoreconfPhase = "NOCONFIGURE=1 sh autogen.sh";
|
|
|
|
|
2019-04-20 21:30:13 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-09-23 19:07:12 +00:00
|
|
|
|
2020-03-13 23:34:09 +00:00
|
|
|
meta = with lib; {
|
2010-07-28 18:01:17 +00:00
|
|
|
description = "Music typesetting system";
|
2020-03-13 15:54:07 +00:00
|
|
|
homepage = "http://lilypond.org/";
|
2015-09-23 19:07:12 +00:00
|
|
|
license = licenses.gpl3;
|
2019-06-10 08:08:09 +00:00
|
|
|
maintainers = with maintainers; [ marcweber yurrriq ];
|
2015-10-28 17:41:40 +00:00
|
|
|
platforms = platforms.all;
|
2009-09-10 16:57:56 +00:00
|
|
|
};
|
|
|
|
}
|