mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 13:05:08 +00:00
nix: 2.5.1 -> 2.6.0
This commit is contained in:
parent
5c3829a8b1
commit
7366cd77cc
@ -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}";
|
||||
|
@ -33091,6 +33091,7 @@ with pkgs;
|
||||
nix_2_3
|
||||
nix_2_4
|
||||
nix_2_5
|
||||
nix_2_6
|
||||
nixUnstable;
|
||||
|
||||
nixStatic = pkgsStatic.nix;
|
||||
|
Loading…
Reference in New Issue
Block a user