From 1410fc00f7f4ba3244815a1bc3aab4e1214537b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 25 Jul 2024 09:36:12 +0200 Subject: [PATCH] nixVersions.nix_2_23: init at 2.23.3 Backport 2.23.3 to also allow testing of this nix version on stable nixpkgs. We leave the _latest attribute untouched on purpose to not cause unexpected breakages. Not backporting the commits directly, since they also introcuded other unwanted changes. --- pkgs/tools/package-management/nix/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 788264067396..cf00d96e4973 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -178,6 +178,12 @@ in lib.makeExtensible (self: ({ self_attribute_name = "nix_2_22"; }; + nix_2_23 = common { + version = "2.23.3"; + hash = "sha256-lAoLGVIhRFrfgv7wcyduEkyc83QKrtsfsq4of+WrBeg="; + self_attribute_name = "nix_2_23"; + }; + git = (common rec { version = "2.24.0"; suffix = "pre20240709_${lib.substring 0 8 src.rev}";