nixpkgs/pkgs/misc/lilypond/default.nix

61 lines
1.9 KiB
Nix
Raw Normal View History

2020-03-13 23:34:09 +00:00
{ stdenv, lib, fetchurl, ghostscript, gyre-fonts, texinfo, imagemagick, texi2html, guile
2021-03-03 02:08:48 +00:00
, python3, gettext, flex, perl, bison, pkg-config, 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;
}
}:
2020-03-13 23:34:09 +00:00
stdenv.mkDerivation rec {
pname = "lilypond";
2021-04-30 19:23:52 +00:00
version = "2.22.1";
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";
2021-04-30 19:23:52 +00:00
sha256 = "sha256-cqwtVMMQwxQcC3gtTgvvkALVUZz0ZjJ1mx8D72lpzDA=";
};
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"
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/"
];
preConfigure = ''
sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl
export HOME=$TMPDIR/home
'';
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ autoreconfHook bison flex makeWrapper pkg-config ];
buildInputs =
[ ghostscript texinfo imagemagick texi2html guile dblatex tex zip netpbm
2021-03-03 02:08:48 +00:00
python3 gettext perl fontconfig freetype pango
fontforge help2man groff t1utils
];
2020-03-13 23:34:09 +00:00
autoreconfPhase = "NOCONFIGURE=1 sh autogen.sh";
enableParallelBuilding = true;
2020-03-13 23:34:09 +00:00
meta = with 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;
};
}