2969ca571a
GitOrigin-RevId: 257cbbcd3ab7bd96f5d24d50adc807de7c82e06d
14 lines
373 B
Nix
14 lines
373 B
Nix
{ callPackage, openssl, python3, stdenv, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
inherit openssl;
|
|
python = python3;
|
|
};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "14.15.4";
|
|
sha256 = "177cxp4fhmglyx035j8smiy1bp5fz6q2phlcl0a2mdbldkvfrdxd";
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
|
}
|