Merge pull request #99093 from veprbl/pr/texlive_chktex_fix
texlive: move chktex from texlive.bin.core to texlive.bin.chktex
This commit is contained in:
commit
86e6adc799
@ -145,6 +145,7 @@ 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"
|
||||||
"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" # 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
|
||||||
@ -271,6 +272,24 @@ core-big = stdenv.mkDerivation { #TODO: upmendex
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
chktex = stdenv.mkDerivation {
|
||||||
|
pname = "texlive-chktex.bin";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
inherit (common) src;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ core/*kpathsea*/ ];
|
||||||
|
|
||||||
|
preConfigure = "cd texk/chktex";
|
||||||
|
|
||||||
|
configureFlags = common.configureFlags
|
||||||
|
++ [ "--with-system-kpathsea" ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
dvisvgm = stdenv.mkDerivation {
|
dvisvgm = stdenv.mkDerivation {
|
||||||
pname = "texlive-dvisvgm.bin";
|
pname = "texlive-dvisvgm.bin";
|
||||||
inherit version;
|
inherit version;
|
||||||
|
Loading…
Reference in New Issue
Block a user