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

15 lines
380 B
Nix
Raw Normal View History

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