texlive.bin.core: avoid building lua{53,jit} libraries
This commit is contained in:
parent
02cbf4e773
commit
69e0797b00
@ -136,7 +136,7 @@ core = stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
rm -r libs/{cairo,freetype2,gd,gmp,graphite2,harfbuzz,icu,libpaper,libpng} \
|
rm -r libs/{cairo,freetype2,gd,gmp,graphite2,harfbuzz,icu,libpaper,libpng} \
|
||||||
libs/{mpfr,pixman,poppler,xpdf,zlib,zziplib}
|
libs/{lua53,luajit,mpfr,pixman,poppler,xpdf,zlib,zziplib}
|
||||||
mkdir WorkDir
|
mkdir WorkDir
|
||||||
cd WorkDir
|
cd WorkDir
|
||||||
'';
|
'';
|
||||||
@ -144,13 +144,13 @@ core = stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
configureFlags = common.configureFlags
|
configureFlags = common.configureFlags
|
||||||
++ [ "--without-x" ] # disable xdvik and xpdfopen
|
++ [ "--without-x" ] # disable xdvik and xpdfopen
|
||||||
++ map (what: "--disable-${what}") ([
|
++ map (what: "--disable-${what}") [
|
||||||
"chktex"
|
"chktex"
|
||||||
"dvisvgm" "dvipng" # ghostscript dependency
|
"dvisvgm" "dvipng" # ghostscript dependency
|
||||||
"luatex" "luajittex" "mp" "pmp" "upmp" "mf" # cairo would bring in X and more
|
"luatex" "luajittex"
|
||||||
|
"mp" "pmp" "upmp" "mf" "mflua" "mfluajit" # cairo would bring in X and more
|
||||||
"xetex" "bibtexu" "bibtex8" "bibtex-x" "upmendex" # ICU isn't small
|
"xetex" "bibtexu" "bibtex8" "bibtex-x" "upmendex" # ICU isn't small
|
||||||
] ++ stdenv.lib.optional (stdenv.hostPlatform.isPower && stdenv.hostPlatform.is64bit) "mfluajit")
|
];
|
||||||
;
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user