2021-08-10 14:31:46 +00:00
|
|
|
{ callPackage, openssl, python3, enableNpm ? true }:
|
2021-04-22 02:08:21 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
inherit openssl;
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2021-10-28 06:52:43 +00:00
|
|
|
version = "16.13.0";
|
|
|
|
sha256 = "1k6bgs83s5iaawi63dcc826g23lfqr13phwbbzwx0pllqcyln49j";
|
2021-08-10 14:31:46 +00:00
|
|
|
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
|
2021-04-22 02:08:21 +00:00
|
|
|
}
|