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
365 B
Nix
Raw Normal View History

{ callPackage, icu68, 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 {
icu = icu68;
python = python2;
};
2019-04-23 22:33:00 +01:00
in
buildNodejs {
inherit enableNpm;
2021-10-13 04:25:26 +01:00
version = "12.22.7";
sha256 = "0sszg3k5jd26hymqhs5328kvnxsb3x78sg4gpna9lrvh92s26snc";
2021-01-23 17:15:07 +00:00
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
2019-04-23 22:33:00 +01:00
}