mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-21 14:44:14 +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,
|
||||
findutils,
|
||||
lib,
|
||||
gawk,
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
name = "nixos-generate";
|
||||
@ -14,6 +15,6 @@ stdenv.mkDerivation {
|
||||
installFlags = ["PREFIX=$(out)"];
|
||||
postFixup = ''
|
||||
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