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:
parent
aefd8c420c
commit
08fe395074
1 changed files with 4 additions and 0 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue