summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-07-29 17:13:40 +0200
committerElis Hirwing <elis@hirwing.se>2018-07-29 20:17:58 +0200
commit7e6b76fc6bdebb12c8c3c2e6223f9fe5f3b38a39 (patch)
tree34aebb4d2c3e0ab9a094d45519512b5f59bc8304 /pkgs/top-level
parent846d8f8305192dcc3a63139102698b4ac6b9ef9f (diff)
downloadnixlib-7e6b76fc6bdebb12c8c3c2e6223f9fe5f3b38a39.tar
nixlib-7e6b76fc6bdebb12c8c3c2e6223f9fe5f3b38a39.tar.gz
nixlib-7e6b76fc6bdebb12c8c3c2e6223f9fe5f3b38a39.tar.bz2
nixlib-7e6b76fc6bdebb12c8c3c2e6223f9fe5f3b38a39.tar.lz
nixlib-7e6b76fc6bdebb12c8c3c2e6223f9fe5f3b38a39.tar.xz
nixlib-7e6b76fc6bdebb12c8c3c2e6223f9fe5f3b38a39.tar.zst
nixlib-7e6b76fc6bdebb12c8c3c2e6223f9fe5f3b38a39.zip
php: drop 5.6 and 7.0
Both 5.6 and 7.0 is currently on life support, as in only recieving
security related patches.

This will only continue until:
 - 2018-12-31 for PHP 5.6
 - 2018-12-01 for PHP 7.0

Both these dates are in the middle of the 18.09 lifecycle. So it would
be nice to not have them in the 18.09 stable release. Dropping them
now would also result in less maintanance in updating them.

The death dates can be seen on both these links:
 - https://secure.php.net/supported-versions.php
 - https://en.wikipedia.org/wiki/PHP#Release_history
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix10
1 files changed, 0 insertions, 10 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index dd4ce7f71b7a..8854ae15c5de 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7419,14 +7419,6 @@ with pkgs;
   php = php72;
   phpPackages = php72Packages;
 
-  php56Packages = recurseIntoAttrs (callPackage ./php-packages.nix {
-    php = php56;
-  });
-
-  php70Packages = recurseIntoAttrs (callPackage ./php-packages.nix {
-    php = php70;
-  });
-
   php71Packages = recurseIntoAttrs (callPackage ./php-packages.nix {
     php = php71;
   });
@@ -7437,8 +7429,6 @@ with pkgs;
 
 
   inherit (callPackages ../development/interpreters/php { })
-    php56
-    php70
     php71
     php72;