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

21 lines
570 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-03-25 16:29:02 +00:00
version = "4.8.1";
name = "${baseName}-${version}";
src = fetchurl {
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
2017-03-25 16:29:02 +00:00
sha256 = "0kcalypjf1036gr4mv1gy682hc1rp18ms3cv7mz0941qnizkzrms";
};
2016-10-20 07:32:05 +01:00
})