1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/web/nodejs/v5.nix

13 lines
378 B
Nix
Raw Normal View History

2016-10-18 09:08:28 +01:00
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
2015-11-16 17:58:11 +00:00
, pkgconfig, runCommand, which, libtool
2016-04-25 15:10:10 +01:00
, callPackage
}@args:
2015-11-16 17:58:11 +00:00
2016-04-25 15:10:10 +01:00
import ./nodejs.nix (args // rec {
2016-07-19 10:34:39 +01:00
version = "5.12.0";
2015-11-16 17:58:11 +00:00
src = fetchurl {
2016-05-18 17:33:58 +01:00
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
2016-07-19 10:34:39 +01:00
sha256 = "4f926373f11f2a25156eee1804ec012eb912c42e5d34fc2909889da22efdadfe";
2015-11-16 17:58:11 +00:00
};
2016-04-25 15:10:10 +01:00
})