2021-04-28 10:28:19 +02:00
|
|
|
{ callPackage, icu68, python2, lib, stdenv, enableNpm ? true }:
|
2019-04-23 23:33:00 +02:00
|
|
|
|
|
|
|
let
|
2020-10-15 01:00:00 +02:00
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
2021-04-28 10:28:19 +02:00
|
|
|
icu = icu68;
|
2020-04-07 13:45:55 +02:00
|
|
|
python = python2;
|
|
|
|
};
|
2019-04-23 23:33:00 +02:00
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2022-04-05 16:09:34 +02:00
|
|
|
version = "12.22.12";
|
|
|
|
sha256 = "1whl0zi6fs9ay33bhcn2kh9xynran05iipahg1zzr6sv97wbfhmw";
|
2021-01-23 18:15:07 +01:00
|
|
|
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
|
2019-04-23 23:33:00 +02:00
|
|
|
}
|