nixpkgs/pkgs/development/web/nodejs/v4.nix
2018-01-02 10:37:12 +01:00

12 lines
302 B
Nix

{ stdenv, callPackage, lib, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {};
in
buildNodejs {
inherit enableNpm;
version = "4.8.7";
sha256 = "1y21wq092d3gmccm2zldbflbbbx7a71wi9l0bpkxvzmgws69liq3";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
}