nodejs-9_x: Package is EOL

This commit is contained in:
adisbladis 2018-07-08 13:06:08 +08:00
parent 784f543cb7
commit be6ef3ee00
No known key found for this signature in database
GPG key ID: ED58F95069B004F5
2 changed files with 0 additions and 14 deletions

View file

@ -1,11 +0,0 @@
{ stdenv, callPackage, lib, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {};
in
buildNodejs {
inherit enableNpm;
version = "9.11.2";
sha256 = "04y2dnbf6jl8j0ykfkdwhir09h274d13k843d7lqfz3bgyn4wj06";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
}

View file

@ -3518,9 +3518,6 @@ with pkgs;
nodejs-8_x = callPackage ../development/web/nodejs/v8.nix {};
nodejs-slim-8_x = callPackage ../development/web/nodejs/v8.nix { enableNpm = false; };
nodejs-9_x = callPackage ../development/web/nodejs/v9.nix {};
nodejs-slim-9_x = callPackage ../development/web/nodejs/v9.nix { enableNpm = false; };
nodejs-10_x = callPackage ../development/web/nodejs/v10.nix {
openssl = openssl_1_1_0;
};