nix: move declaration to top-level/all-packages

This commit is contained in:
Bernardo Meurer 2022-01-24 23:30:55 -08:00
parent 5210313299
commit e4d25f9d5a
No known key found for this signature in database
GPG Key ID: F4C0D53B8D14C246
2 changed files with 3 additions and 4 deletions

View File

@ -43,9 +43,7 @@ let
inherit boehmgc patches Security;
inherit storeDir stateDir confDir;
};
in rec {
nix = nix_2_5;
in {
nix_2_3 = buildNix rec {
version = "2.3.16";
src = fetchurl {

View File

@ -33133,13 +33133,14 @@ with pkgs;
stateDir = config.nix.stateDir or "/nix/var";
inherit (darwin.apple_sdk.frameworks) Security;
})
nix
nix_2_3
nix_2_4
nix_2_5
nix_2_6
nixUnstable;
nix = nix_2_5;
nixStatic = pkgsStatic.nix;
nixops = callPackage ../tools/package-management/nixops { };