texlive.bin.core: remove unneeded autoreconfHook
Revert "texlive: fix missing synctex header"
This reverts commit ce6e72a11c
.
This commit is contained in:
parent
b8ec336447
commit
ea5ac1103c
|
@ -2,7 +2,7 @@
|
||||||
, texlive
|
, texlive
|
||||||
, zlib, libiconv, libpng, libX11
|
, zlib, libiconv, libpng, libX11
|
||||||
, freetype, gd, libXaw, icu, ghostscript, libXpm, libXmu, libXext
|
, freetype, gd, libXaw, icu, ghostscript, libXpm, libXmu, libXext
|
||||||
, perl, perlPackages, python2Packages, pkgconfig, autoreconfHook
|
, perl, perlPackages, python2Packages, pkgconfig
|
||||||
, poppler, libpaper, graphite2, zziplib, harfbuzz, potrace, gmp, mpfr
|
, poppler, libpaper, graphite2, zziplib, harfbuzz, potrace, gmp, mpfr
|
||||||
, cairo, pixman, xorg, clisp, biber, xxHash
|
, cairo, pixman, xorg, clisp, biber, xxHash
|
||||||
, makeWrapper, shortenPerlShebang
|
, makeWrapper, shortenPerlShebang
|
||||||
|
@ -34,10 +34,6 @@ let
|
||||||
cp -pv texk/web2c/pdftexdir/pdftosrc{-poppler0.83.0,}.cc
|
cp -pv texk/web2c/pdftexdir/pdftosrc{-poppler0.83.0,}.cc
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# remove when removing synctex-missing-header.patch
|
|
||||||
preAutoreconf = "pushd texk/web2c";
|
|
||||||
postAutoreconf = "popd";
|
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-banner-add=/NixOS.org"
|
"--with-banner-add=/NixOS.org"
|
||||||
"--disable-missing" "--disable-native-texlive-build"
|
"--disable-missing" "--disable-native-texlive-build"
|
||||||
|
@ -71,11 +67,11 @@ core = stdenv.mkDerivation rec {
|
||||||
pname = "texlive-bin";
|
pname = "texlive-bin";
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
||||||
inherit (common) src prePatch preAutoreconf postAutoreconf;
|
inherit (common) src prePatch;
|
||||||
|
|
||||||
outputs = [ "out" "doc" ];
|
outputs = [ "out" "doc" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
/*teckit*/ zziplib poppler mpfr gmp
|
/*teckit*/ zziplib poppler mpfr gmp
|
||||||
pixman gd freetype libpng libpaper zlib
|
pixman gd freetype libpng libpaper zlib
|
||||||
|
@ -161,7 +157,7 @@ core-big = stdenv.mkDerivation { #TODO: upmendex
|
||||||
pname = "texlive-core-big.bin";
|
pname = "texlive-core-big.bin";
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
||||||
inherit (common) src prePatch preAutoreconf postAutoreconf;
|
inherit (common) src prePatch;
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue