Merge pull request #43178 from adisbladis/nodejs-9_x-drop

nodejs-9_x: Package is EOL
This commit is contained in:
adisbladis 2018-07-08 23:33:28 +08:00 committed by GitHub
commit b57d32aa74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
};