mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
70 lines
2.2 KiB
Nix
70 lines
2.2 KiB
Nix
{ 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 ])
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lilypond";
|
|
version = "2.24.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
|
|
sha256 = "sha256-6W+gNXHHnyDhl5ZTr6vb5O5Cdlo9n9FJU/DNnupReBw=";
|
|
};
|
|
|
|
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 \
|
|
--prefix PATH : "${lib.makeBinPath [ ghostscript coreutils (placeholder "out") ]}" \
|
|
--argv0 "$f"
|
|
done
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--disable-documentation"
|
|
# FIXME: these URW fonts are not OTF, configure reports "URW++ OTF files... no".
|
|
"--with-urwotf-dir=${ghostscript.fonts}/share/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
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoreconfHook bison flex makeWrapper pkg-config ];
|
|
|
|
buildInputs =
|
|
[ ghostscript texinfo imagemagick texi2html guile dblatex tex zip netpbm
|
|
python3 gettext perl fontconfig freetype pango
|
|
fontforge help2man groff t1utils boehmgc rsync
|
|
];
|
|
|
|
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;
|
|
maintainers = with maintainers; [ marcweber yurrriq ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
FONTCONFIG_FILE = lib.optional stdenv.hostPlatform.isDarwin (makeFontsConf {
|
|
fontDirectories = [ freefont_ttf ];
|
|
});
|
|
}
|