nixpkgs/pkgs/development/web/nodejs/v4.nix

13 lines
364 B
Nix
Raw Normal View History

2015-02-22 06:41:33 -05:00
{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool
2016-04-25 10:10:10 -04:00
, callPackage
}@args:
2016-04-25 10:10:10 -04:00
import ./nodejs.nix (args // rec {
2016-05-18 12:33:37 -04:00
version = "4.4.4";
src = fetchurl {
2016-05-18 12:33:37 -04:00
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
sha256 = "055i4wcc5sfqv7ksdxwbxpy4v1qc16lkzgbyhx46cnhl072fv71c";
};
2016-04-25 10:10:10 -04:00
})