summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v4.nix
blob: f8b8830a6fc0ace500353d04cc7c9fe3f35c47c1 (plain) (blame)
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 = "4.4.4";
  src = fetchurl {
    url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
    sha256 = "055i4wcc5sfqv7ksdxwbxpy4v1qc16lkzgbyhx46cnhl072fv71c";
  };
})