nixos/tests/installer.nix: add curl on host machine

add curl so that rather than seeing the test attempt to download
curl's tarball, we see what it's trying to download.
This commit is contained in:
obadz 2016-07-17 21:16:58 +01:00
parent aefd8c420c
commit 08fe395074

View file

@ -210,6 +210,10 @@ let
pkgs.nixos-artwork
pkgs.perlPackages.XMLLibXML
pkgs.perlPackages.ListCompare
# add curl so that rather than seeing the test attempt to download
# curl's tarball, we see what it's trying to download
pkgs.curl
]
++ optional (bootLoader == "grub" && grubVersion == 1) pkgs.grub
++ optionals (bootLoader == "grub" && grubVersion == 2) [ pkgs.grub2 pkgs.grub2_efi ];