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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
366 B
Nix
Raw Normal View History

{ 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 {
icu = icu68;
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
}