1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
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.22.1";
sha256 = "12drpkffn79xx84pffg9y2cn9fiwycgaa2rjj3ix6visfzvhsrfx";
2021-01-23 17:15:07 +00:00
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
2019-04-23 22:33:00 +01:00
}