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-04-15 01:41:22 +00:00
|
|
|
version = "17.9.0";
|
|
|
|
sha256 = "1q1rr9kvlk9rd35x3x206iy894hq2ywyhqxbb6grak6wcvdgcnan";
|
2021-12-19 01:06:50 +00:00
|
|
|
patches = [
|
|
|
|
./disable-darwin-v8-system-instrumentation.patch
|
|
|
|
];
|
2021-10-17 09:34:42 +00:00
|
|
|
}
|