2022-03-30 09:31:56 +00:00
|
|
|
{ callPackage, python3, enableNpm ? true }:
|
2021-10-17 09:34:42 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2022-03-30 09:31:56 +00:00
|
|
|
version = "17.8.0";
|
|
|
|
sha256 = "0jsf6sv42rzpizvil7g1gf9bskh8lx0gcxg0yzpr4hk7mx7i90br";
|
2021-12-19 01:06:50 +00:00
|
|
|
patches = [
|
|
|
|
./disable-darwin-v8-system-instrumentation.patch
|
|
|
|
];
|
2021-10-17 09:34:42 +00:00
|
|
|
}
|