1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 23:24:35 +00:00
nixpkgs/pkgs/development/web/nodejs/v4.nix

13 lines
376 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 15:10:10 +01:00
, callPackage
}@args:
2016-04-25 15:10:10 +01:00
import ./nodejs.nix (args // rec {
2016-06-25 18:00:17 +01:00
version = "4.4.6";
src = fetchurl {
2016-05-18 17:33:37 +01:00
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
2016-06-25 18:00:17 +01:00
sha256 = "0f6bbfbea525469c91932b1aac35e0810e6bcda96f1c720e42a433942ee66106";
};
2016-04-25 15:10:10 +01:00
})