···1{ runCommand, gawk, extensions, makeWrapper }:
23runCommand "gawk-with-extensions" {
4- buildInputs = [ makeWrapper gawk ] ++ extensions;
05} ''
6 mkdir -p $out/bin
7 for i in ${gawk}/bin/*; do
···1{ runCommand, gawk, extensions, makeWrapper }:
23runCommand "gawk-with-extensions" {
4+ nativeBuildInputs = [ makeWrapper ];
5+ buildInputs = [ gawk ] ++ extensions;
6} ''
7 mkdir -p $out/bin
8 for i in ${gawk}/bin/*; do
+2-1
pkgs/tools/typesetting/tex/texlive/combine.nix
···50 "/tex/generic/config" # make it a real directory for scheme-infraonly
51 ];
5253- buildInputs = [ makeWrapper ] ++ pkgList.extraInputs;
05455 # This is set primarily to help find-tarballs.nix to do its job
56 passthru.packages = pkgList.all;
···50 "/tex/generic/config" # make it a real directory for scheme-infraonly
51 ];
5253+ nativeBuildInputs = [ makeWrapper ];
54+ buildInputs = [ ] ++ pkgList.extraInputs;
5556 # This is set primarily to help find-tarballs.nix to do its job
57 passthru.packages = pkgList.all;