nixos/buildkite-agent: add gnutar, gzip and git to runtimePackages

These are required for nix to do builtins.fetchTarball and
builtins.fetchGit, so most likely we want them to be around.
This commit is contained in:
Florian Klink 2020-01-19 21:49:19 +01:00
parent 7838f00824
commit 70308a7daf

@ -52,8 +52,8 @@ in
};
runtimePackages = mkOption {
default = [ pkgs.bash pkgs.nix ];
defaultText = "[ pkgs.bash pkgs.nix ]";
default = [ pkgs.bash pkgs.gnutar pkgs.gzip pkgs.git pkgs.nix ];
defaultText = "[ pkgs.bash pkgs.gnutar pkgs.gzip pkgs.git pkgs.nix ]";
description = "Add programs to the buildkite-agent environment";
type = types.listOf types.package;
};