23 lines
661 B
Nix
23 lines
661 B
Nix
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
|
|
, pkgconfig, runCommand, which, libtool, fetchpatch
|
|
, callPackage
|
|
, darwin ? null
|
|
, enableNpm ? true
|
|
}@args:
|
|
|
|
let
|
|
nodejs = import ./nodejs.nix args;
|
|
baseName = if enableNpm then "nodejs" else "nodejs-slim";
|
|
in
|
|
stdenv.mkDerivation (nodejs // rec {
|
|
version = "7.10.0";
|
|
name = "${baseName}-${version}";
|
|
src = fetchurl {
|
|
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
|
|
sha256 = "08czj7ssvzgv13zvhg2y9mhy4cc6pvm4bcp7rbzj3a2ba8axsd6w";
|
|
};
|
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
|
|
})
|
|
|