2022-05-31 22:57:20 +01:00
|
|
|
{ callPackage, python3, lib, stdenv, openssl, enableNpm ? true }:
|
2020-04-22 10:20:00 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
2022-05-31 22:57:20 +01:00
|
|
|
inherit openssl;
|
2020-04-22 10:20:00 +01:00
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2022-11-04 04:20:00 +00:00
|
|
|
version = "14.21.1";
|
|
|
|
sha256 = "sha256-PbldbKcolXvwkLYwGnqdLYBxSyoG2Jih22XG5Csdp6w=";
|
2021-01-23 17:15:07 +00:00
|
|
|
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
2020-04-22 10:20:00 +01:00
|
|
|
}
|