summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v10.nix
blob: 07f8e3b6000221f10191d1eb6fb427a63070c5e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
  buildNodejs {
    inherit enableNpm;
    version = "10.4.1";
    sha256 = "0i40mn8g71z7wildhnjp64j7fnlld32dibyq677bd4pra95migx5";
    patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ./no-xcodebuild.patch ];
  }