12 lines
376 B
Nix
12 lines
376 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.4.6";
|
|
src = fetchurl {
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
|
|
sha256 = "0f6bbfbea525469c91932b1aac35e0810e6bcda96f1c720e42a433942ee66106";
|
|
};
|
|
})
|