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

15 lines
380 B
Nix
Raw Normal View History

2021-01-23 18:15:07 +01:00
{ callPackage, openssl, icu, 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 {
inherit openssl icu;
python = python2;
};
2019-04-23 23:33:00 +02:00
in
buildNodejs {
inherit enableNpm;
version = "12.22.0";
sha256 = "08xsc1pw6352v5lz92ppfhrcmqnbm6m5wmjfs9frz26lp875yp6z";
2021-01-23 18:15:07 +01:00
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
2019-04-23 23:33:00 +02:00
}