about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v12.nix
blob: ea7c211163e2bce91116042f66831e7cfec0e079 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ callPackage, icu68, python2, lib, stdenv, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix {
    icu = icu68;
    python = python2;
  };
in
  buildNodejs {
    inherit enableNpm;
    version = "12.22.12";
    sha256 = "1whl0zi6fs9ay33bhcn2kh9xynran05iipahg1zzr6sv97wbfhmw";
    patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
  }