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

15 lines
382 B
Nix
Raw Normal View History

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