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-12-06 13:03:03 +01:00
|
|
|
version = "16.13.1";
|
|
|
|
sha256 = "1bb3rjb2xxwn6f4grjsa7m1pycp0ad7y6vz7v2d7kbsysx7h08sc";
|
2021-08-08 06:20:00 +02:00
|
|
|
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
|
2021-04-20 06:20:00 +02:00
|
|
|
}
|