From 201369dceb49da19af42e29b1dc11586da4a26e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Fri, 8 Mar 2024 08:50:27 +0100 Subject: [PATCH] tests.evalNixpkgs: Update the golden hash `nix-env -qaP`'s output has changed a bit because of https://github.com/NixOS/nix/issues/10132. Although that's a bit annoying, it isn't nearly as problematic as the evaluation changes that this test is supposed to catch. So it's find to just update the hash for the time being and fix the issue later (properly fixing the issue will very likely change the hash any way). --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 80a55d40d..e9d8395ec 100644 --- a/flake.nix +++ b/flake.nix @@ -302,7 +302,7 @@ ( set -x time nix-env --store dummy:// -f ${nixpkgs-regression} -qaP --drv-path | sort | grep -v nixos-install-tools > packages - [[ $(sha1sum < packages | cut -c1-40) = ff451c521e61e4fe72bdbe2d0ca5d1809affa733 ]] + [[ $(sha1sum < packages | cut -c1-40) = e01b031fc9785a572a38be6bc473957e3b6faad7 ]] ) mkdir $out '';