13 lines
378 B
Nix
13 lines
378 B
Nix
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
|
|
, pkgconfig, runCommand, which, libtool
|
|
, callPackage
|
|
}@args:
|
|
|
|
import ./nodejs.nix (args // rec {
|
|
version = "5.12.0";
|
|
src = fetchurl {
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
|
|
sha256 = "4f926373f11f2a25156eee1804ec012eb912c42e5d34fc2909889da22efdadfe";
|
|
};
|
|
})
|