nixpkgs/pkgs/misc/lilypond/default.nix

69 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, ghostscript, texinfo, imagemagick, texi2html, guile
, python2, gettext, flex, perl, bison, pkgconfig, autoreconfHook, dblatex
2014-06-11 09:00:35 +00:00
, fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff
, makeWrapper, t1utils
, texlive, tex ? texlive.combine {
inherit (texlive) scheme-small lh metafont epsf;
}
}:
let
version = "2.18.2";
in
stdenv.mkDerivation {
pname = "lilypond";
inherit version;
2012-08-05 19:08:01 +00:00
src = fetchgit {
url = "https://git.savannah.gnu.org/r/lilypond.git";
rev = "release/${version}-1";
sha256 = "0fk045fmmb6fcv7jdvkbqr04qlwnxzwclr2gzx3gja714xy6a76x";
};
2013-04-21 07:24:55 +00:00
postInstall = ''
2014-06-11 09:00:35 +00:00
for f in "$out/bin/"*; do
# Override default argv[0] setting so LilyPond can find
# its Scheme libraries.
wrapProgram "$f" --set GUILE_AUTO_COMPILE 0 \
--set PATH "${ghostscript}/bin" \
--argv0 "$f"
done
2013-04-21 07:24:55 +00:00
'';
configureFlags = [
"--disable-documentation"
"--with-ncsb-dir=${ghostscript}/share/ghostscript/fonts"
];
preConfigure = ''
sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl
export HOME=$TMPDIR/home
'';
nativeBuildInputs = [ makeWrapper pkgconfig autoreconfHook ];
autoreconfPhase = "NOCONFIGURE=1 sh autogen.sh";
buildInputs =
[ ghostscript texinfo imagemagick texi2html guile dblatex tex zip netpbm
python2 gettext flex perl bison fontconfig freetype pango
fontforge help2man groff t1utils
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Music typesetting system";
homepage = http://lilypond.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ marcweber yurrriq ];
2015-10-28 17:41:40 +00:00
platforms = platforms.all;
2019-06-10 08:09:41 +00:00
broken = stdenv.isDarwin;
};
patches = [ ./findlib.patch ];
}