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

21 lines
582 B
Nix
Raw Normal View History

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