2021-01-23 09:15:07 -08:00
|
|
|
{ callPackage, openssl, icu, python2, lib, stdenv, enableNpm ? true }:
|
2019-04-23 14:33:00 -07:00
|
|
|
|
|
|
|
let
|
2020-10-14 16:00:00 -07:00
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
2020-04-07 04:45:55 -07:00
|
|
|
inherit openssl icu;
|
|
|
|
python = python2;
|
|
|
|
};
|
2019-04-23 14:33:00 -07:00
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2021-04-06 21:20:00 -07:00
|
|
|
version = "12.22.1";
|
|
|
|
sha256 = "12drpkffn79xx84pffg9y2cn9fiwycgaa2rjj3ix6visfzvhsrfx";
|
2021-01-23 09:15:07 -08:00
|
|
|
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
2019-04-23 14:33:00 -07:00
|
|
|
}
|