From 02cbf4e773774d9ef9260ead08742e4b8182c533 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Fri, 9 Oct 2020 18:19:49 -0400 Subject: [PATCH] texlive.bin.core: remove outdated options --- pkgs/tools/typesetting/tex/texlive/bin.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix index 098ecb76d7a..83b5f194890 100644 --- a/pkgs/tools/typesetting/tex/texlive/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive/bin.nix @@ -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; };