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

22 lines
584 B
Nix
Raw Normal View History

2016-11-02 23:21:44 +00:00
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool, fetchpatch
, callPackage
, darwin ? null
, enableNpm ? true
}@args:
let
nodejs = import ./nodejs.nix args;
baseName = if enableNpm then "nodejs" else "nodejs-slim";
in
stdenv.mkDerivation (nodejs // rec {
2017-03-21 10:19:42 +00:00
version = "7.7.3";
2016-11-02 23:21:44 +00:00
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
2017-03-21 10:19:42 +00:00
sha256 = "1pqfrvz06nz88jdp1vsrxfy5z0v8yas1c6pkvl45afvl3zqxlhal";
2016-11-02 23:21:44 +00:00
};
})