nodejs: remove version 7_x
nodejs v7 reached its end of life in June 2017.
This commit is contained in:
parent
c9d419a22b
commit
28b0a79c04
@ -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 ];
|
|
||||||
})
|
|
@ -2901,15 +2901,6 @@ with pkgs;
|
|||||||
enableNpm = false;
|
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 {
|
nodejs-8_x = callPackage ../development/web/nodejs/v8.nix {
|
||||||
libtool = darwin.cctools;
|
libtool = darwin.cctools;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user