2022-09-14 18:05:37 +00:00
|
|
|
{ callPackage, python3, lib, stdenv, openssl, enableNpm ? true }:
|
2020-05-03 17:38:23 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
2022-09-14 18:05:37 +00:00
|
|
|
inherit openssl;
|
2020-05-03 17:38:23 +00:00
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2022-07-14 12:49:19 +00:00
|
|
|
version = "14.20.0";
|
|
|
|
sha256 = "0slrcgiwwn8isp2ih5i2v1d6lsafz7bg6qwxf2lydlc9i14rhl1b";
|
2021-02-05 17:12:51 +00:00
|
|
|
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
2020-05-03 17:38:23 +00:00
|
|
|
}
|