Unverified Commit 5deeadb2 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #232382 from marsam/update-nodejs

nodejs_20: 20.1.0 -> 20.2.0, nodejs_19: drop
parents a4b47b68 b1c0f3be
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
  ];
}
+2 −2
Original line number Diff line number Diff line
@@ -9,8 +9,8 @@ let
in
buildNodejs {
  inherit enableNpm;
  version = "20.1.0";
  sha256 = "sha256-YA+eEYYJlYFLkSKxrFMY9q1WQnR4Te7ZjYqSBmSUNrU=";
  version = "20.2.0";
  sha256 = "sha256-IlI98jFsNVaXFP8fabBTwuKGztRgiYQX3uRpRe/N+Yk=";
  patches = [
    ./revert-arm64-pointer-auth.patch
    ./disable-darwin-v8-system-instrumentation-node19.patch
+0 −2
Original line number Diff line number Diff line
@@ -1145,8 +1145,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
@@ -9488,10 +9488,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;