nixpkgs/pkgs/development/web/nodejs/v15.nix
Jonathan del Strother 67be794a7f nodejs: Fix build by pinning to icu68
Node 12/14/15 don't build against icu69, failing with:

```
../deps/v8/src/objects/js-list-format.cc:172:55: error: 'createInstance' is a private member of 'icu_69::ListFormatter'
```
2021-04-28 09:28:19 +01:00

14 lines
283 B
Nix

{ callPackage, icu68, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
icu = icu68;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "15.14.0";
sha256 = "0vm6jdazqjd1plqsgngzvjrafv2d3mdahk6il4ray02gx97dq8l1";
}