Files
nixpkgs/pkgs/development/web/nodejs/v12.nix
Mario Rodas ffffe30c14 nodejs-12_x: 12.22.5 -> 12.22.6
https://github.com/nodejs/node/releases/tag/v12.22.6
(cherry picked from commit 00fa834e558bca1feeedae4ec9b6cd55bfe4281d)
2021-09-01 07:37:23 -05:00

15 lines
365 B
Nix

{ callPackage, icu68, python2, lib, stdenv, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
icu = icu68;
python = python2;
};
in
buildNodejs {
inherit enableNpm;
version = "12.22.6";
sha256 = "0yhgkcp7lx5nglxsrybbjymx1fys3wkbbhkj6h6652gnp0b2y0n2";
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
}