summary refs log tree commit diff
diff options
context:
space:
mode:
authorLéo Gaspard <leo@gaspard.io>2020-03-31 22:17:27 +0200
committerGitHub <noreply@github.com>2020-03-31 22:17:27 +0200
commita3ee24b2ff0ccf8026fa84d5f7a9f8b3675b248a (patch)
tree96c9672e9db315dc581c2a0f4b1aae79ae709f55
parent12c634ca2aad6539762d5bfebb06c50e19a2c2f7 (diff)
parent6a2f64a5421fcd6f08c8ec5c5ba3fe9444bfe5d4 (diff)
downloadnixpkgs-a3ee24b2ff0ccf8026fa84d5f7a9f8b3675b248a.tar
nixpkgs-a3ee24b2ff0ccf8026fa84d5f7a9f8b3675b248a.tar.gz
nixpkgs-a3ee24b2ff0ccf8026fa84d5f7a9f8b3675b248a.tar.bz2
nixpkgs-a3ee24b2ff0ccf8026fa84d5f7a9f8b3675b248a.tar.lz
nixpkgs-a3ee24b2ff0ccf8026fa84d5f7a9f8b3675b248a.tar.xz
nixpkgs-a3ee24b2ff0ccf8026fa84d5f7a9f8b3675b248a.tar.zst
nixpkgs-a3ee24b2ff0ccf8026fa84d5f7a9f8b3675b248a.zip
Merge pull request #83894 from symphorien/unbreak-os-prober-test
Unbreak os prober test
-rw-r--r--nixos/tests/os-prober.nix2
-rw-r--r--pkgs/build-support/vm/default.nix4
2 files changed, 4 insertions, 2 deletions
diff --git a/nixos/tests/os-prober.nix b/nixos/tests/os-prober.nix
index 5407a62339f..6a38f5ca531 100644
--- a/nixos/tests/os-prober.nix
+++ b/nixos/tests/os-prober.nix
@@ -51,6 +51,8 @@ let
       hashed-mirrors =
       connect-timeout = 1
     '';
+    # save some memory
+    documentation.enable = false;
   };
   # /etc/nixos/configuration.nix for the vm
   configFile = pkgs.writeText "configuration.nix"  ''
diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix
index 488c7f2ce2c..487a91145c5 100644
--- a/pkgs/build-support/vm/default.nix
+++ b/pkgs/build-support/vm/default.nix
@@ -1022,8 +1022,8 @@ rec {
       name = "debian-9.8-stretch-i386";
       fullName = "Debian 9.8 Stretch (i386)";
       packagesList = fetchurl {
-        url = http://snapshot.debian.org/archive/debian/20190503T090946Z/dists/stretch/main/binary-i386/Packages.xz;
-        sha256 = "1dr3skl35iyj85qlc33lq4whippbqf327vnbcyfqqrv6h86k68mw";
+        url = http://snapshot.debian.org/archive/debian/20200301T030401Z/dists/stretch/main/binary-i386/Packages.xz;
+        sha256 = "1jglr1d1jys3xddp8f7w9j05db39fah8xy4gfkpqbd1b5d2caslz";
       };
       urlPrefix = mirror://debian;
       packages = commonDebianPackages;