diff options
author | Vincent Ambo <tazjin@google.com> | 2019-07-30T23·39+0100 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2019-07-31T14·28+0100 |
commit | a83701a14b4b620d9b24656e638d31e746f3a06e (patch) | |
tree | af7158f2140e8c93075fcd9aeb987925f12630c8 | |
parent | 2e4b1f85eef04c0abd83f5f47e1aa93c8ea84cb9 (diff) |
feat(build): Add dependencies for custom repo clones
Adds git & SSH as part of the Nixery image, which are required to use Nix's builtins.fetchGit. The dependency on interactive tools is dropped, as it was only required during development when debugging the image building process itself.
-rw-r--r-- | tools/nixery/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/nixery/default.nix b/tools/nixery/default.nix index 23c776e117ff..0f28911668ce 100644 --- a/tools/nixery/default.nix +++ b/tools/nixery/default.nix @@ -94,13 +94,13 @@ rec { name = "nixery"; config.Cmd = ["${nixery-launch-script}/bin/nixery"]; contents = [ - bashInteractive cacert - coreutils - nix - nixery-launch-script + git gnutar gzip + nix + nixery-launch-script + openssh ]; }; } |