summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-09-19 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-09-19 04:20:00 +0000
commit2f2a55e67581a1b0dde3af4401496827e4556ae3 (patch)
tree14e4967b44f3b9c49046c4d21407b6bb0973e5ee
parent85fd87463918c383c46f8725b96eea6e63cf5d4f (diff)
downloadnixpkgs-2f2a55e67581a1b0dde3af4401496827e4556ae3.tar
nixpkgs-2f2a55e67581a1b0dde3af4401496827e4556ae3.tar.gz
nixpkgs-2f2a55e67581a1b0dde3af4401496827e4556ae3.tar.bz2
nixpkgs-2f2a55e67581a1b0dde3af4401496827e4556ae3.tar.lz
nixpkgs-2f2a55e67581a1b0dde3af4401496827e4556ae3.tar.xz
nixpkgs-2f2a55e67581a1b0dde3af4401496827e4556ae3.tar.zst
nixpkgs-2f2a55e67581a1b0dde3af4401496827e4556ae3.zip
nodejs_18: 18.17.1 -> 18.18.0
Changelog: https://github.com/nodejs/node/releases/tag/v18.18.0
-rw-r--r--pkgs/development/web/nodejs/v18.nix11
1 files changed, 2 insertions, 9 deletions
diff --git a/pkgs/development/web/nodejs/v18.nix b/pkgs/development/web/nodejs/v18.nix
index 0eb1ab4ce3f..13a50dc12db 100644
--- a/pkgs/development/web/nodejs/v18.nix
+++ b/pkgs/development/web/nodejs/v18.nix
@@ -8,20 +8,13 @@ let
 in
 buildNodejs {
   inherit enableNpm;
-  version = "18.17.1";
-  sha256 = "sha256-8hXPA9DwDwesC2dMaBn4BMFULhbxUtoEmAAirsz15lo=";
+  version = "18.18.0";
+  sha256 = "sha256-5NTbrDY02Z+JLwDbR9p4+YSTwzlYLoqV+y3Vn1z+D5A=";
   patches = [
     ./disable-darwin-v8-system-instrumentation.patch
     ./bypass-darwin-xcrun-node16.patch
     ./revert-arm64-pointer-auth.patch
     ./node-npm-build-npm-package-logic.patch
     ./trap-handler-backport.patch
-    # Fixes target toolchain arguments being passed to the host toolchain when
-    # cross-compiling. For example, -m64 is not available on aarch64.
-    (fetchpatch {
-      name = "common-gypi-cross.patch";
-      url = "https://github.com/nodejs/node/pull/48597.patch";
-      hash = "sha256-FmHmwlTxPw5mTW6t4zuy9vr4FxopjU4Kx+F1aqabG1s=";
-    })
   ];
 }