21 lines
570 B
Nix
21 lines
570 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 = "4.6.2";
|
|
name = "${baseName}-${version}";
|
|
src = fetchurl {
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
|
|
sha256 = "17ick2r2biyxs5zf83i8q8844fbcphm0d5g1z70mcrb86yrmi545";
|
|
};
|
|
|
|
})
|