2021-10-20 04:52:55 +02:00
|
|
|
{ callPackage, python3, enableNpm ? true }:
|
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2021-11-14 06:54:10 +01:00
|
|
|
version = "17.1.0";
|
|
|
|
sha256 = "1iyazwpgv3pxqh7zz3s87qwrbahifrj9sj1a2vwhkc4jxcvkz03b";
|
2021-10-20 04:52:55 +02:00
|
|
|
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
|
|
|
|
}
|