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

21 lines
582 B
Nix
Raw Normal View History

2016-10-18 10:08:28 +02:00
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool, fetchpatch
2016-04-25 16:10:10 +02:00
, callPackage
, darwin ? null
, enableNpm ? true
2016-04-25 16:10:10 +02:00
}@args:
let
nodejs = import ./nodejs.nix args;
baseName = if enableNpm then "nodejs" else "nodejs-slim";
in
stdenv.mkDerivation (nodejs // rec {
2017-07-14 06:30:49 +02: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 06:30:49 +02:00
sha256 = "35fe633a48cbe93c79327161d9dc964ac9810f4ceb2ed8628487e6e14a15905b";
};
2016-10-20 08:32:05 +02:00
})