forked from mirrors/nixpkgs
13 lines
364 B
Nix
13 lines
364 B
Nix
{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser
|
|
, pkgconfig, runCommand, which, libtool
|
|
, callPackage
|
|
}@args:
|
|
|
|
import ./nodejs.nix (args // rec {
|
|
version = "4.6.0";
|
|
src = fetchurl {
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
|
|
sha256 = "1566q1kkv8j30fgqx8sm2h8323f38wwpa1hfb10gr6z46jyhv4a2";
|
|
};
|
|
})
|