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

let
  buildNodejs = callPackage ./nodejs.nix {};
in
  buildNodejs {
    inherit enableNpm;
    version = "6.14.3";
    sha256 = "1jbrfk875aimm65wni059rrydmhp4z0hrxskq3ci6jvykxr8gwg3";
    patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ./no-xcodebuild.patch ];
  }