···782 nix_2_4 = nixVersions.nix_2_4;
783 nix_2_5 = nixVersions.nix_2_5;
784 nix_2_6 = nixVersions.nix_2_6;
785- nixops = throw "'nixops' has been removed. Please use 'nixops_unstable' for the time being."; # Added 2023-10-26
786 nixopsUnstable = nixops_unstable; # Added 2022-03-03
0000787 nixosTest = testers.nixosTest; # Added 2022-05-05
788 nmap-unfree = nmap; # Added 2021-04-06
789 nodejs_14 = throw "nodejs_14 has been removed as it is EOL."; # Added 2023-10-30
···782 nix_2_4 = nixVersions.nix_2_4;
783 nix_2_5 = nixVersions.nix_2_5;
784 nix_2_6 = nixVersions.nix_2_6;
785+ nixops = throw "'nixops' has been removed. Please use 'nixops_unstable_minimal' for the time being. E.g. nixops_unstable_minimal.withPlugins (ps: [ ps.nixops-gce ])"; # Added 2023-10-26
786 nixopsUnstable = nixops_unstable; # Added 2022-03-03
787+788+ # When the nixops_unstable alias is removed, nixops_unstable_minimal can be renamed to nixops_unstable.
789+ nixops_unstable = throw "nixops_unstable has been replaced. Please use for example 'nixops_unstable_minimal.withPlugins (ps: [ ps.nixops-gce ps.nixops-encrypted-links ])' instead"; # Added 2024-02-28
790+791 nixosTest = testers.nixosTest; # Added 2022-05-05
792 nmap-unfree = nmap; # Added 2021-04-06
793 nodejs_14 = throw "nodejs_14 has been removed as it is EOL."; # Added 2023-10-30
+8-1
pkgs/top-level/all-packages.nix
···4020340204 nixStatic = pkgsStatic.nix;
4020540206- nixops_unstable = callPackage ../applications/networking/cluster/nixops { };
00000004020740208 /*
40209 Evaluate a NixOS configuration using this evaluation of Nixpkgs.
···4020340204 nixStatic = pkgsStatic.nix;
4020540206+ inherit (callPackages ../applications/networking/cluster/nixops { })
40207+ nixops_unstable_minimal
40208+40209+ # Not recommended; too fragile
40210+ nixops_unstable_full;
40211+40212+ # Useful with ofborg, e.g. commit prefix `nixops_unstablePlugins.nixops-aws: ...` to trigger automatically.
40213+ nixops_unstablePlugins = recurseIntoAttrs nixops_unstable_minimal.availablePlugins;
4021440215 /*
40216 Evaluate a NixOS configuration using this evaluation of Nixpkgs.