Unverified Commit fcbe400b authored by Thiago Kenji Okada's avatar Thiago Kenji Okada Committed by GitHub
Browse files

nodejs_18: fix aliases (#401126)

parents 9c3177de 358fb704
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1287,6 +1287,9 @@ mapAliases {

  nixosTest = testers.nixosTest; # Added 2022-05-05
  nmap-unfree = throw "'nmap-unfree' has been renamed to/replaced by 'nmap'"; # Converted to throw 2024-10-17
  nodejs_18 = throw "Node.js 18.x has reached End-Of-Life and has been removed"; # Added 2025-04-23
  nodejs-slim_18 = nodejs_18; # Added 2025-04-23
  corepack_18 = nodejs_18; # Added 2025-04-23
  nodejs-18_x = nodejs_18; # Added 2022-11-06
  nodejs-slim-18_x = nodejs-slim_18; # Added 2022-11-06
  nomad_1_4 = throw "nomad_1_4 is no longer supported upstream. You can switch to using a newer version of the nomad package, or revert to older nixpkgs if you cannot upgrade"; # Added 2025-02-02
+0 −4
Original line number Diff line number Diff line
@@ -4164,10 +4164,6 @@ with pkgs;
  nodejs-slim = nodejs-slim_22;
  corepack = hiPrio corepack_22;
  nodejs_18 = throw "Node.js 18.x has reached End-Of-Life and has been removed";
  nodejs-slim_18 = throw "Node.js 18.x has reached End-Of-Life and has been removed";
  corepack_18 = throw "Node.js 18.x has reached End-Of-Life and has been removed";
  nodejs_20 = callPackage ../development/web/nodejs/v20.nix { };
  nodejs-slim_20 = callPackage ../development/web/nodejs/v20.nix { enableNpm = false; };
  corepack_20 = hiPrio (callPackage ../development/web/nodejs/corepack.nix { nodejs = nodejs_20; });