2020-12-03 15:40:35 -08:00
|
|
|
{ callPackage, openssl, python3, stdenv, enableNpm ? true }:
|
2020-04-22 02:20:00 -07:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
inherit openssl;
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2021-01-05 13:22:00 -08:00
|
|
|
version = "14.15.4";
|
|
|
|
sha256 = "177cxp4fhmglyx035j8smiy1bp5fz6q2phlcl0a2mdbldkvfrdxd";
|
2020-12-03 15:40:35 -08:00
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
2020-04-22 02:20:00 -07:00
|
|
|
}
|