blob: 2398ae4e7392330cc87a2c8cab2d5db6da0430fd (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ stdenv, fetchurl, openssl, python, 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";
};
})
|