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

13 lines
364 B
Nix
Raw Normal View History

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