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