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

let
  buildNodejs = callPackage ./nodejs.nix {
    inherit openssl icu;
    python = python2;
  };
in
  buildNodejs {
    inherit enableNpm;
    version = "12.22.1";
    sha256 = "12drpkffn79xx84pffg9y2cn9fiwycgaa2rjj3ix6visfzvhsrfx";
    patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
  }