summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorobadz <obadz-git@obadz.com>2016-07-17 21:16:58 +0100
committerobadz <obadz-git@obadz.com>2016-07-17 21:17:55 +0100
commit08fe3950745412b79af0452133eea111c8cd2621 (patch)
tree5f4e8b7280dac813ce8e56056dd767dd440cc18d /nixos
parentaefd8c420c00d97c22375b647e9053691fe4ba28 (diff)
downloadnixlib-08fe3950745412b79af0452133eea111c8cd2621.tar
nixlib-08fe3950745412b79af0452133eea111c8cd2621.tar.gz
nixlib-08fe3950745412b79af0452133eea111c8cd2621.tar.bz2
nixlib-08fe3950745412b79af0452133eea111c8cd2621.tar.lz
nixlib-08fe3950745412b79af0452133eea111c8cd2621.tar.xz
nixlib-08fe3950745412b79af0452133eea111c8cd2621.tar.zst
nixlib-08fe3950745412b79af0452133eea111c8cd2621.zip
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.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/installer.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index 4a30cc18b021..e71168a73660 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -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 ];