core/pkgs/by-name/li/lilypond/default.nix

139 lines
2.5 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
stdenv,
lib,
fetchurl,
ghostscript,
gyre-fonts,
texinfo,
imagemagick,
texi2html,
guile,
python3,
gettext,
flex,
perl,
bison,
pkg-config,
autoreconfHook,
dblatex,
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
]
),
2024-05-02 00:46:19 +00:00
}:
stdenv.mkDerivation rec {
pname = "lilypond";
version = "2.24.3";
src = fetchurl {
url = "http://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
sha256 = "sha256-3wBfdu969aTNdKEPjnEVJ4t/p58UAYk3tlwQlJjsRL4=";
};
postInstall = ''
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 \
2024-06-30 08:16:52 +00:00
--set PATH "${
lib.makeBinPath [
ghostscript
coreutils
(placeholder "out")
]
}" \
2024-05-02 00:46:19 +00:00
--argv0 "$f"
done
'';
configureFlags = [
"--disable-documentation"
2024-06-30 08:16:52 +00:00
# FIXME: these URW fonts are not OTF, configure reports "URW++ OTF files... no".
2024-05-02 00:46:19 +00:00
"--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
'';
2024-06-30 08:16:52 +00:00
nativeBuildInputs = [
autoreconfHook
bison
flex
makeWrapper
pkg-config
];
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
buildInputs = [
ghostscript
texinfo
imagemagick
texi2html
guile
dblatex
tex
zip
netpbm
python3
gettext
perl
fontconfig
freetype
pango
fontforge
help2man
groff
t1utils
boehmgc
rsync
];
2024-05-02 00:46:19 +00:00
autoreconfPhase = "NOCONFIGURE=1 sh autogen.sh";
enableParallelBuilding = true;
passthru.updateScript = {
command = [ ./update.sh ];
supportedFeatures = [ "commit" ];
};
meta = with lib; {
description = "Music typesetting system";
homepage = "http://lilypond.org/";
license = licenses.gpl3;
2024-06-30 08:16:52 +00:00
maintainers = with maintainers; [
marcweber
yurrriq
];
2024-05-02 00:46:19 +00:00
platforms = platforms.all;
};
FONTCONFIG_FILE = lib.optional stdenv.isDarwin (makeFontsConf {
fontDirectories = [ freefont_ttf ];
});
}