2021-08-10 14:31:46 +00:00
|
|
|
{ callPackage, openssl, python3, enableNpm ? true }:
|
2021-04-22 02:08:21 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
inherit openssl;
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2021-10-09 14:59:57 +00:00
|
|
|
version = "16.11.0";
|
|
|
|
sha256 = "1bk5f47hm409129w437h8qdvmqjdr11awblvnhkfsp911nyk3xnk";
|
2021-08-10 14:31:46 +00:00
|
|
|
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
|
2021-04-22 02:08:21 +00:00
|
|
|
}
|