Skip to content

Commit

Permalink
package.nix: add missing gawk
Browse files Browse the repository at this point in the history
fixes #356
  • Loading branch information
Mic92 authored and mergify[bot] committed Aug 12, 2024
1 parent a12a28f commit a220fc3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
coreutils,
findutils,
lib,
gawk,
}:
stdenv.mkDerivation {
name = "nixos-generate";
Expand All @@ -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]}
'';
}

0 comments on commit a220fc3

Please sign in to comment.