nixpkgs/pkgs/development/web/nodejs/v9.nix
2018-02-27 14:03:15 +08:00

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 ];
}