nodejs: remove version 7_x

nodejs v7 reached its end of life in June 2017.
This commit is contained in:
Mathias Schreck 2017-08-05 13:17:50 +02:00
parent c9d419a22b
commit 28b0a79c04
2 changed files with 1 additions and 31 deletions

View File

@ -1,21 +0,0 @@
{ 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 {
version = "7.10.1";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "654db852149a1cc59ece68ec573b0486907e8febe8353cee097dd29ea5a56cfa";
};
patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
})

View File

@ -1052,7 +1052,7 @@ with pkgs;
glock = callPackage ../development/tools/glock { };
glslviewer = callPackage ../development/tools/glslviewer { };
gmic = callPackage ../tools/graphics/gmic { };
goa = callPackage ../development/tools/goa { };
@ -2901,15 +2901,6 @@ with pkgs;
enableNpm = false;
};
nodejs-7_x = callPackage ../development/web/nodejs/v7.nix {
libtool = darwin.cctools;
};
nodejs-slim-7_x = callPackage ../development/web/nodejs/v7.nix {
libtool = darwin.cctools;
enableNpm = false;
};
nodejs-8_x = callPackage ../development/web/nodejs/v8.nix {
libtool = darwin.cctools;
};