Commit b1c0f3be authored by Mario Rodas's avatar Mario Rodas
Browse files

nodejs_19: drop

Node.js 19 reaches End-of-Life on 2023-06-01.
parent 793d3463
Loading
Loading
Loading
Loading
+0 −19
Original line number Diff line number Diff line
{ callPackage, openssl, fetchpatch, python3, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix {
    inherit openssl;
    python = python3;
  };

in
buildNodejs {
  inherit enableNpm;
  version = "19.9.0";
  sha256 = "sha256-x/zp1Gymzg2JkEM8v2AbuSecDq7YcFs1cBjPUL6b7Sk=";
  patches = [
    ./revert-arm64-pointer-auth.patch
    ./disable-darwin-v8-system-instrumentation-node19.patch
    ./bypass-darwin-xcrun-node16.patch
  ];
}
+0 −2
Original line number Diff line number Diff line
@@ -1146,8 +1146,6 @@ mapAliases ({
  nodejs-slim-16_x = nodejs-slim_16; # Added 2022-11-06
  nodejs-18_x = nodejs_18; # Added 2022-11-06
  nodejs-slim-18_x = nodejs-slim_18; # Added 2022-11-06
  nodejs-19_x = nodejs_19; # Added 2022-11-06
  nodejs-slim-19_x = nodejs-slim_19; # Added 2022-11-06
  nologin = throw "'nologin' has been renamed to/replaced by 'shadow'"; # Converted to throw 2022-02-22
  nomad_1_1 = throw "nomad_1_1 has been removed because it's outdated. Use a a newer version instead"; # Added 2022-05-22
  nordic-polar = throw "nordic-polar was removed on 2021-05-27, now integrated in nordic"; # Added 2021-05-27
+0 −4
Original line number Diff line number Diff line
@@ -9484,10 +9484,6 @@ with pkgs;
  nodejs-slim_18 = callPackage ../development/web/nodejs/v18.nix {
    enableNpm = false;
  };
  nodejs_19 = callPackage ../development/web/nodejs/v19.nix { };
  nodejs-slim_19 = callPackage ../development/web/nodejs/v19.nix {
    enableNpm = false;
  };
  nodejs_20 = callPackage ../development/web/nodejs/v20.nix { };
  nodejs-slim_20 = callPackage ../development/web/nodejs/v20.nix {
    enableNpm = false;