mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
gawk-with-extensions: move makeWrapper to nativeBuildInputs
This commit is contained in:
parent
9e1ff110b5
commit
99e9cc0d40
@ -1,7 +1,8 @@
|
||||
{ runCommand, gawk, extensions, makeWrapper }:
|
||||
|
||||
runCommand "gawk-with-extensions" {
|
||||
buildInputs = [ makeWrapper gawk ] ++ extensions;
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ gawk ] ++ extensions;
|
||||
} ''
|
||||
mkdir -p $out/bin
|
||||
for i in ${gawk}/bin/*; do
|
||||
|
Loading…
Reference in New Issue
Block a user