Files
nixpkgs/pkgs/development/web/nodejs/v16.nix
T
Mario Rodas a2303a63e4 nodejs-16_x: 16.7.0 -> 16.8.0
https://github.com/nodejs/node/releases/tag/v16.8.0
(cherry picked from commit 372b7ce697010444e41e4a89428aed05fd4fe7bc)
2021-08-25 22:30:44 -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.8.0";
sha256 = "14k3njj382im3q4k6dhsxdk07gs81hw2k0nrixfvlw1964k04ydq";
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
}