···782782 nix_2_4 = nixVersions.nix_2_4;
783783 nix_2_5 = nixVersions.nix_2_5;
784784 nix_2_6 = nixVersions.nix_2_6;
785785- nixops = throw "'nixops' has been removed. Please use 'nixops_unstable' for the time being."; # Added 2023-10-26
785785+ 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
786786 nixopsUnstable = nixops_unstable; # Added 2022-03-03
787787+788788+ # When the nixops_unstable alias is removed, nixops_unstable_minimal can be renamed to nixops_unstable.
789789+ 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
790790+787791 nixosTest = testers.nixosTest; # Added 2022-05-05
788792 nmap-unfree = nmap; # Added 2021-04-06
789793 nodejs_14 = throw "nodejs_14 has been removed as it is EOL."; # Added 2023-10-30
+8-1
pkgs/top-level/all-packages.nix
···40203402034020440204 nixStatic = pkgsStatic.nix;
40205402054020640206- nixops_unstable = callPackage ../applications/networking/cluster/nixops { };
4020640206+ inherit (callPackages ../applications/networking/cluster/nixops { })
4020740207+ nixops_unstable_minimal
4020840208+4020940209+ # Not recommended; too fragile
4021040210+ nixops_unstable_full;
4021140211+4021240212+ # Useful with ofborg, e.g. commit prefix `nixops_unstablePlugins.nixops-aws: ...` to trigger automatically.
4021340213+ nixops_unstablePlugins = recurseIntoAttrs nixops_unstable_minimal.availablePlugins;
40207402144020840215 /*
4020940216 Evaluate a NixOS configuration using this evaluation of Nixpkgs.