1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 18:42:15 +00:00
nixpkgs/pkgs/development/web/nodejs/v7.nix

23 lines
661 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-05-05 18:39:30 +01:00
version = "7.10.0";
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-05-05 18:39:30 +01:00
sha256 = "08czj7ssvzgv13zvhg2y9mhy4cc6pvm4bcp7rbzj3a2ba8axsd6w";
2016-11-02 23:21:44 +00:00
};
2017-05-05 18:39:30 +01:00
patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
2016-11-02 23:21:44 +00:00
})