nix: 2.5.1 -> 2.6.0

This commit is contained in:
Bernardo Meurer
2022-01-24 18:32:56 -08:00
parent 5c3829a8b1
commit 7366cd77cc
2 changed files with 18 additions and 1 deletions
+17 -1
View File
@@ -229,7 +229,7 @@ in rec {
nix = nixStable;
nixStable = nix_2_5;
nixStable = nix_2_6;
nix_2_3 = callPackage common (rec {
pname = "nix";
@@ -280,6 +280,22 @@ in rec {
inherit storeDir stateDir confDir;
});
nix_2_6 = callPackage common (rec {
pname = "nix";
version = "2.6.0";
src = fetchFromGitHub {
owner = "NixOS";
repo = "nix";
rev = version;
sha256 = "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=";
};
boehmgc = boehmgc_nix;
inherit storeDir stateDir confDir;
});
nixUnstable = lib.lowPrio (callPackage common rec {
pname = "nix";
version = "2.6${suffix}";
+1
View File
@@ -33091,6 +33091,7 @@ with pkgs;
nix_2_3
nix_2_4
nix_2_5
nix_2_6
nixUnstable;
nixStatic = pkgsStatic.nix;