texlive.bin.core: remove outdated options

This commit is contained in:
Dmitry Kalinkin 2020-10-09 18:19:49 -04:00
parent 2603bd54e4
commit 02cbf4e773
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

View File

@ -150,7 +150,6 @@ core = stdenv.mkDerivation rec {
"luatex" "luajittex" "mp" "pmp" "upmp" "mf" # cairo would bring in X and more
"xetex" "bibtexu" "bibtex8" "bibtex-x" "upmendex" # ICU isn't small
] ++ stdenv.lib.optional (stdenv.hostPlatform.isPower && stdenv.hostPlatform.is64bit) "mfluajit")
++ [ "--without-system-harfbuzz" "--without-system-icu" ] # bogus configure
;
enableParallelBuilding = true;
@ -194,9 +193,6 @@ core = stdenv.mkDerivation rec {
mv "$out"/share/{man,info} "$doc"/doc
'' + cleanBrokenLinks;
# needed for poppler and xpdf
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++14";
setupHook = ./setup-hook.sh; # TODO: maybe texmf-nix -> texmf (and all references)
passthru = { inherit version buildInputs; };