about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v10.nix
blob: cef9cd928778cb294ddc03c26d22342eca75ca22 (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 = "10.23.2";
    sha256 = "1iyvs56x5zvvqmpr6kkamgpfj70n2rj1fh7afc7q8hj3bq7f1985";
    patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
  }