2021-05-20 23:08:51 +00:00
|
|
|
{ callPackage, icu68, python2, lib, stdenv, enableNpm ? true }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
2020-10-16 20:44:37 +00:00
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
2021-05-20 23:08:51 +00:00
|
|
|
icu = icu68;
|
2020-04-24 23:36:52 +00:00
|
|
|
python = python2;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2021-04-12 18:23:04 +00:00
|
|
|
version = "12.22.1";
|
|
|
|
sha256 = "12drpkffn79xx84pffg9y2cn9fiwycgaa2rjj3ix6visfzvhsrfx";
|
2021-02-05 17:12:51 +00:00
|
|
|
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|