3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #192688 from marsam/update-nodejs

nodejs: 14.20.0 -> 14.20.1, 16.17.0 -> 16.17.1 ,18.9.0 -> 18.9.1
This commit is contained in:
Mario Rodas 2022-09-23 23:31:36 -05:00 committed by GitHub
commit 78fa74ccd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -8,7 +8,7 @@ let
in
buildNodejs {
inherit enableNpm;
version = "14.20.0";
sha256 = "0slrcgiwwn8isp2ih5i2v1d6lsafz7bg6qwxf2lydlc9i14rhl1b";
version = "14.20.1";
sha256 = "sha256-NlBX6mYZI8v6cb3XqNCs6d3/jSLUMa2SNV+EM87P8U0=";
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
}

View file

@ -8,8 +8,8 @@ let
in
buildNodejs {
inherit enableNpm;
version = "16.17.0";
sha256 = "sha256-HSjChWheRGmFkhvJY1ZcqcDF9P2pdV5InAaAjql5VkU=";
version = "16.17.1";
sha256 = "sha256-ZyH+tBUtVtLGs1jOOXq9Wn8drwnuLiXFAhubTT+GozA=";
patches = [
./disable-darwin-v8-system-instrumentation.patch
# Fix npm silently fail without a HOME directory https://github.com/npm/cli/issues/4996

View file

@ -7,8 +7,8 @@ let
in
buildNodejs {
inherit enableNpm;
version = "18.9.0";
sha256 = "sha256-x1zImv6tl2eRkArM3gKnsefnYnAvD2+mjqrLAZhNllQ=";
version = "18.9.1";
sha256 = "sha256-84GWPUNWi6aZkVyIYp3G2koZY4BNzTey5uHRDZI91dk=";
patches = [
(fetchpatch {
# Fixes cross compilation to aarch64-linux by reverting https://github.com/nodejs/node/pull/43200