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-11-04 12:27:35 +00:00
|
|
|
version = "14.21.1";
|
|
|
|
sha256 = "sha256-PbldbKcolXvwkLYwGnqdLYBxSyoG2Jih22XG5Csdp6w=";
|
2021-02-05 17:12:51 +00:00
|
|
|
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
2020-05-03 17:38:23 +00:00
|
|
|
}
|