nixpkgs/pkgs/misc/lilypond/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.2 KiB
Nix
Raw Normal View History

2023-12-23 00:57:36 +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
, freefont_ttf, makeFontsConf
, makeWrapper, t1utils, boehmgc, rsync, coreutils
, texliveSmall, tex ? texliveSmall.withPackages (ps: with ps; [ lh metafont epsf fontinst ])
}:
2020-03-13 23:34:09 +00:00
stdenv.mkDerivation rec {
pname = "lilypond";
2024-07-25 04:30:48 +00:00
version = "2.24.4";
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";
2024-07-25 04:30:48 +00:00
sha256 = "sha256-6W+gNXHHnyDhl5ZTr6vb5O5Cdlo9n9FJU/DNnupReBw=";
};
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 \
--prefix PATH : "${lib.makeBinPath [ ghostscript coreutils (placeholder "out") ]}" \
--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".
2024-05-28 03:50:34 +00:00
"--with-urwotf-dir=${ghostscript.fonts}/share/fonts"
2020-03-13 23:34:09 +00:00
"--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 =
2023-12-23 00:57:36 +00:00
[ 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 boehmgc rsync
];
2020-03-13 23:34:09 +00:00
autoreconfPhase = "NOCONFIGURE=1 sh autogen.sh";
enableParallelBuilding = true;
passthru.updateScript = {
command = [ ./update.sh ];
supportedFeatures = [ "commit" ];
};
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;
};
FONTCONFIG_FILE = lib.optional stdenv.hostPlatform.isDarwin (makeFontsConf {
fontDirectories = [ freefont_ttf ];
});
}