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.
This commit is contained in:
Vincent Ambo 2019-07-31 00:39:31 +01:00 committed by Vincent Ambo
parent 8dc407cc74
commit 12b99397d0

View File

@ -94,13 +94,13 @@ rec {
name = "nixery"; name = "nixery";
config.Cmd = ["${nixery-launch-script}/bin/nixery"]; config.Cmd = ["${nixery-launch-script}/bin/nixery"];
contents = [ contents = [
bashInteractive
cacert cacert
coreutils git
nix
nixery-launch-script
gnutar gnutar
gzip gzip
nix
nixery-launch-script
openssh
]; ];
}; };
} }