https://github.com/nodejs/node/releases/tag/v16.8.0 (cherry picked from commit 372b7ce697010444e41e4a89428aed05fd4fe7bc)
15 lines
356 B
Nix
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 ];
|
|
}
|