2021-08-08 06:20:00 +02:00
|
|
|
{ callPackage, openssl, python3, enableNpm ? true }:
|
2021-04-20 06:20:00 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
inherit openssl;
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2021-10-13 05:50:38 +02:00
|
|
|
version = "16.11.1";
|
|
|
|
sha256 = "0y32mdv8zs35la2bny8d9rxjvj1vr8z079ji1g6ajc2yw96pyn37";
|
2021-08-08 06:20:00 +02:00
|
|
|
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
|
2021-04-20 06:20:00 +02:00
|
|
|
}
|