nixVersions.git: 2.31pre20250712_b1245123 -> 2.32pre20250919_07b96c1d (#444089)

This commit is contained in:
Philip Taron
2025-09-19 22:28:37 +00:00
committed by GitHub
2 changed files with 11 additions and 3 deletions
@@ -180,14 +180,14 @@ lib.makeExtensible (
nix_2_31 = addTests "nix_2_31" self.nixComponents_2_31.nix-everything;
nixComponents_git = nixDependencies.callPackage ./modular/packages.nix rec {
version = "2.31pre20250712_${lib.substring 0 8 src.rev}";
version = "2.32pre20250919_${lib.substring 0 8 src.rev}";
inherit maintainers teams;
otherSplices = generateSplicesForNixComponents "nixComponents_git";
src = fetchFromGitHub {
owner = "NixOS";
repo = "nix";
rev = "b124512388378cd38c4e353ddb387905d296e877";
hash = "sha256-asBUtSonedNfMO0/Z6HUi8RK/y/7I1qBDHv2UryichA=";
rev = "07b96c1d14ab8695e5071fb73e19049fce8f3b6b";
hash = "sha256-9tR08zFwQ9JNohdfeb40wcLfRnicXpKrHF+FHFva/WA=";
};
};
@@ -15,6 +15,7 @@
nix-store,
nix-expr,
nix-cli,
toml11,
busybox-sandbox-shell ? null,
@@ -72,6 +73,13 @@ mkMesonDerivation (
echo $PWD | grep tests/functional
'';
# `toml11` upgrade causes these to fail in 2.32+: https://github.com/NixOS/nixpkgs/pull/442682
# Remove when that PR lands in master.
${if lib.versionAtLeast (lib.versions.majorMinor version) "2.32" then "preCheck" else null} =
lib.optionalString (lib.versionOlder toml11.version "4.0") ''
rm -f ../lang/eval-fail-fromTOML-{over,under}flow*
'';
mesonCheckFlags = [
"--print-errorlogs"
];