summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authoradisbladis <adis@blad.is>2018-02-22 11:04:22 +0800
committerRobin Gloster <mail@glob.in>2018-02-27 10:19:23 +0100
commitd192858a7649734556a5fefc05647495b694818c (patch)
treee0abf1c6343345308c8b6e291e5861f0928cfb1b /pkgs/development/web
parent2da3be709bb120987e6771975891642d1e9a0f44 (diff)
downloadnixlib-d192858a7649734556a5fefc05647495b694818c.tar
nixlib-d192858a7649734556a5fefc05647495b694818c.tar.gz
nixlib-d192858a7649734556a5fefc05647495b694818c.tar.bz2
nixlib-d192858a7649734556a5fefc05647495b694818c.tar.lz
nixlib-d192858a7649734556a5fefc05647495b694818c.tar.xz
nixlib-d192858a7649734556a5fefc05647495b694818c.tar.zst
nixlib-d192858a7649734556a5fefc05647495b694818c.zip
nodejs: Drop 4_x packages
nodejs-4_x is scheduled end-of-life on 2018-04-30
It should not go in the 18.03 release
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/nodejs/v4.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkgs/development/web/nodejs/v4.nix b/pkgs/development/web/nodejs/v4.nix
deleted file mode 100644
index 64674066b295..000000000000
--- a/pkgs/development/web/nodejs/v4.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ stdenv, callPackage, lib, enableNpm ? true }:
-
-let
-  buildNodejs = callPackage ./nodejs.nix {};
-in
-  buildNodejs {
-    inherit enableNpm;
-    version = "4.8.7";
-    sha256 = "1y21wq092d3gmccm2zldbflbbbx7a71wi9l0bpkxvzmgws69liq3";
-    patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
-  }