Files
nixpkgs/pkgs/development/web/nodejs/v16.nix
T
Mario Rodas 404f0f62c5 nodejs-16_x: 16.8.0 -> 16.9.0
https://github.com/nodejs/node/releases/tag/v16.9.0
(cherry picked from commit f60eca11eff3966f2b39a1c6e8acd1a17cd48da7)
2021-10-13 00:25:11 -05:00

15 lines
356 B
Nix

{ callPackage, openssl, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "16.9.0";
sha256 = "0vv6igmnz4fkr4i8gczxxw2qgcvydkpy71w3lskah8zw1lh69rqs";
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
}