From b3e5f58289928d673690cdd9503d77e4f4ddf121 Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sun, 14 May 2023 07:11:02 +0200 Subject: [PATCH] texlive.bin.chktex: add perl interpreter to shebang (#231743) --- pkgs/tools/typesetting/tex/texlive/bin.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix index d76b35dbcaa..c29c68a7dfb 100644 --- a/pkgs/tools/typesetting/tex/texlive/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive/bin.nix @@ -304,7 +304,8 @@ chktex = stdenv.mkDerivation { inherit (common) src; nativeBuildInputs = [ pkg-config ]; - buildInputs = [ core/*kpathsea*/ ]; + # perl used in shebang of script bin/deweb + buildInputs = [ core/*kpathsea*/ perl ]; preConfigure = "cd texk/chktex";