nixpkgs/pkgs/development/web/nodejs/v12.nix

15 lines
365 B
Nix
Raw Normal View History

{ callPackage, icu68, python2, lib, stdenv, enableNpm ? true }:
2019-04-23 21:33:00 +00:00
let
2020-10-14 23:00:00 +00:00
buildNodejs = callPackage ./nodejs.nix {
icu = icu68;
python = python2;
};
2019-04-23 21:33:00 +00:00
in
buildNodejs {
inherit enableNpm;
version = "12.22.3";
sha256 = "143ihn30jd08nk19saxn6qp3ldc9yvy8w338i4cg9256wgx120im";
2021-01-23 17:15:07 +00:00
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
2019-04-23 21:33:00 +00:00
}