2022-04-27 09:35:20 +00:00
|
|
|
{ callPackage, python3, enableNpm ? true }:
|
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2022-07-14 12:49:19 +00:00
|
|
|
version = "18.6.0";
|
|
|
|
sha256 = "0k05phvlpwf467sbaxcvdzr4ncclm9fpldml8fbfrjigl4rhr2sz";
|
2022-04-27 09:35:20 +00:00
|
|
|
patches = [
|
|
|
|
./disable-darwin-v8-system-instrumentation.patch
|
|
|
|
];
|
|
|
|
}
|