nix_2_5: init at 2.5.1
This commit is contained in:
parent
f0fe5e9ba0
commit
1df2988b36
2 changed files with 19 additions and 0 deletions
|
@ -258,6 +258,24 @@ in rec {
|
||||||
inherit storeDir stateDir confDir;
|
inherit storeDir stateDir confDir;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
nix_2_5 = callPackage common (rec {
|
||||||
|
pname = "nix";
|
||||||
|
version = "2.5.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "NixOS";
|
||||||
|
repo = "nix";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-GOsiqy9EaTwDn2PLZ4eFj1VkXcBUbqrqHehRE9GuGdU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
boehmgc = boehmgc_nixUnstable;
|
||||||
|
|
||||||
|
patches = [ installNlohmannJsonPatch ];
|
||||||
|
|
||||||
|
inherit storeDir stateDir confDir;
|
||||||
|
});
|
||||||
|
|
||||||
nixUnstable = lib.lowPrio (callPackage common rec {
|
nixUnstable = lib.lowPrio (callPackage common rec {
|
||||||
pname = "nix";
|
pname = "nix";
|
||||||
version = "2.5${suffix}";
|
version = "2.5${suffix}";
|
||||||
|
|
|
@ -32675,6 +32675,7 @@ with pkgs;
|
||||||
nixStable
|
nixStable
|
||||||
nix_2_3
|
nix_2_3
|
||||||
nix_2_4
|
nix_2_4
|
||||||
|
nix_2_5
|
||||||
nixUnstable;
|
nixUnstable;
|
||||||
|
|
||||||
nixStatic = pkgsStatic.nix;
|
nixStatic = pkgsStatic.nix;
|
||||||
|
|
Loading…
Reference in a new issue