mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-22 10:05:06 +03:00
package.nix: add missing gawk
fixes https://github.com/nix-community/nixos-generators/issues/356
This commit is contained in:
parent
a12a28f636
commit
a220fc3a6e
@ -5,6 +5,7 @@
|
|||||||
coreutils,
|
coreutils,
|
||||||
findutils,
|
findutils,
|
||||||
lib,
|
lib,
|
||||||
|
gawk,
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "nixos-generate";
|
name = "nixos-generate";
|
||||||
@ -14,6 +15,6 @@ stdenv.mkDerivation {
|
|||||||
installFlags = ["PREFIX=$(out)"];
|
installFlags = ["PREFIX=$(out)"];
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
wrapProgram $out/bin/nixos-generate \
|
wrapProgram $out/bin/nixos-generate \
|
||||||
--prefix PATH : ${lib.makeBinPath [jq coreutils findutils]}
|
--prefix PATH : ${lib.makeBinPath [jq coreutils findutils gawk]}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user