nix: 2.5.1 -> 2.6.0

This commit is contained in:
Bernardo Meurer 2022-01-24 18:03:13 -08:00
parent 5c3829a8b1
commit 7366cd77cc
No known key found for this signature in database
GPG key ID: F4C0D53B8D14C246
2 changed files with 18 additions and 1 deletions

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}";

View file

@ -33091,6 +33091,7 @@ with pkgs;
nix_2_3
nix_2_4
nix_2_5
nix_2_6
nixUnstable;
nixStatic = pkgsStatic.nix;