nixpkgs/pkgs/development/web/nodejs/v4.nix

12 lines
302 B
Nix
Raw Normal View History

{ stdenv, callPackage, lib, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {};
in
buildNodejs {
inherit enableNpm;
2017-10-27 04:15:01 +00:00
version = "4.8.5";
sha256 = "0lqdnnihmc2wpl1v1shj60i49wka2354b00a86k0xbjg5gyfx2m4";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
}