summary refs log tree commit diff
diff options
context:
space:
mode:
authorRick van Schijndel <rol3517@gmail.com>2021-07-12 21:58:48 +0200
committerRick van Schijndel <rol3517@gmail.com>2021-07-12 21:58:48 +0200
commitdd9e24f0da6f06528f797fa28c0bb242889d32db (patch)
tree250d01389a54f64764db4673c1621d6c36a564dd
parentab559bd8231f620ff268e22d0938b88d828f6963 (diff)
downloadnixpkgs-dd9e24f0da6f06528f797fa28c0bb242889d32db.tar
nixpkgs-dd9e24f0da6f06528f797fa28c0bb242889d32db.tar.gz
nixpkgs-dd9e24f0da6f06528f797fa28c0bb242889d32db.tar.bz2
nixpkgs-dd9e24f0da6f06528f797fa28c0bb242889d32db.tar.lz
nixpkgs-dd9e24f0da6f06528f797fa28c0bb242889d32db.tar.xz
nixpkgs-dd9e24f0da6f06528f797fa28c0bb242889d32db.tar.zst
nixpkgs-dd9e24f0da6f06528f797fa28c0bb242889d32db.zip
texlive: move makeWrapper to nativeBuildInputs
-rw-r--r--pkgs/tools/typesetting/tex/texlive/combine.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/combine.nix b/pkgs/tools/typesetting/tex/texlive/combine.nix
index f553908d9cc..de9182c0b03 100644
--- a/pkgs/tools/typesetting/tex/texlive/combine.nix
+++ b/pkgs/tools/typesetting/tex/texlive/combine.nix
@@ -50,7 +50,8 @@ in (buildEnv {
     "/tex/generic/config" # make it a real directory for scheme-infraonly
   ];
 
-  buildInputs = [ makeWrapper ] ++ pkgList.extraInputs;
+  nativeBuildInputs = [ makeWrapper ];
+  buildInputs = [ ] ++ pkgList.extraInputs;
 
   # This is set primarily to help find-tarballs.nix to do its job
   passthru.packages = pkgList.all;