Merge pull request #142291 from marsam/init-nodejs-17_x

nodejs-17_x: init at 17.0.0

authored by Mario Rodas and committed by GitHub 00d48f0e 960805a4

+18
+13
pkgs/development/web/nodejs/v17.nix
··· 1 + { callPackage, python3, enableNpm ? true }: 2 + 3 + let 4 + buildNodejs = callPackage ./nodejs.nix { 5 + python = python3; 6 + }; 7 + in 8 + buildNodejs { 9 + inherit enableNpm; 10 + version = "17.0.1"; 11 + sha256 = "071lhqbn103rnn8avqmqwnn2k4yqgcymx624f23k8z6bfbw81i3f"; 12 + patches = [ ./disable-darwin-v8-system-instrumentation.patch ]; 13 + }
+5
pkgs/top-level/all-packages.nix
··· 6983 6983 nodejs-slim-16_x = callPackage ../development/web/nodejs/v16.nix { 6984 6984 enableNpm = false; 6985 6985 }; 6986 + nodejs-17_x = callPackage ../development/web/nodejs/v17.nix { }; 6987 + nodejs-slim-17_x = callPackage ../development/web/nodejs/v17.nix { 6988 + enableNpm = false; 6989 + }; 6986 6990 # Update this when adding the newest nodejs major version! 6991 + # Do not set to nodejs-17_x because it requires 10.13 SDK on Darwin 6987 6992 nodejs_latest = nodejs-16_x; 6988 6993 nodejs-slim_latest = nodejs-slim-16_x; 6989 6994