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

21 lines
570 B
Nix
Raw Normal View History

2016-10-18 11:08:28 +03:00
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool, fetchpatch
2016-04-25 17:10:10 +03:00
, callPackage
, darwin ? null
, enableNpm ? true
2016-04-25 17:10:10 +03:00
}@args:
let
nodejs = import ./nodejs.nix args;
baseName = if enableNpm then "nodejs" else "nodejs-slim";
in
stdenv.mkDerivation (nodejs // rec {
version = "4.6.0";
name = "${baseName}-${version}";
src = fetchurl {
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
sha256 = "1566q1kkv8j30fgqx8sm2h8323f38wwpa1hfb10gr6z46jyhv4a2";
};
2016-10-20 09:32:05 +03:00
})