12 lines
305 B
Nix
12 lines
305 B
Nix
{ stdenv, callPackage, lib, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "9.6.1";
|
|
sha256 = "04hi7lwdizwqqbyi77f4z12gnsh673h92brmbssrmw5kjx6h4k5q";
|
|
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
|
|
}
|