nix_2_5: init at 2.5.1

This commit is contained in:
Robert Hensing 2021-12-20 14:42:30 +01:00
parent f0fe5e9ba0
commit 1df2988b36
2 changed files with 19 additions and 0 deletions

View File

@ -258,6 +258,24 @@ in rec {
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 {
pname = "nix";
version = "2.5${suffix}";

View File

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