about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-06-09 18:52:03 +0200
committerElis Hirwing <elis@hirwing.se>2019-07-04 14:31:49 +0200
commit80c7463a92d1fb2411868a5c8dfb324f75341c5c (patch)
tree38ad2d22dff030935cec86fc0b8662d6b2671927 /pkgs/servers/http
parentc40e87291d15a225cb25bce8831d13ba05860439 (diff)
downloadnixlib-80c7463a92d1fb2411868a5c8dfb324f75341c5c.tar
nixlib-80c7463a92d1fb2411868a5c8dfb324f75341c5c.tar.gz
nixlib-80c7463a92d1fb2411868a5c8dfb324f75341c5c.tar.bz2
nixlib-80c7463a92d1fb2411868a5c8dfb324f75341c5c.tar.lz
nixlib-80c7463a92d1fb2411868a5c8dfb324f75341c5c.tar.xz
nixlib-80c7463a92d1fb2411868a5c8dfb324f75341c5c.tar.zst
nixlib-80c7463a92d1fb2411868a5c8dfb324f75341c5c.zip
php: drop 7.1
PHP 7.1 is currently on life support, as in only recieving security related patches.

This will only continue until: 2019-12-01

This date are in the middle of the 19.09 lifecycle. So it would be
nice to not have it in the 19.09 stable release. Dropping it now would
also result in less maintanance in updating them.

The death dates can be seen on following links:
 - https://endoflife.date/php
 - https://php.net/supported-versions.php
 - https://en.wikipedia.org/wiki/PHP#Release_history
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/unit/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/servers/http/unit/default.nix b/pkgs/servers/http/unit/default.nix
index 3f0567695fb8..39b9b31f7f0a 100644
--- a/pkgs/servers/http/unit/default.nix
+++ b/pkgs/servers/http/unit/default.nix
@@ -1,6 +1,5 @@
 { stdenv, fetchFromGitHub, which
 , withPython ? true, python
-, withPHP71 ? false, php71
 , withPHP72 ? true, php72
 , withPHP73 ? false, php73
 , withPerl ? true, perl
@@ -30,7 +29,6 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ ]
     ++ optional withPython python
-    ++ optional withPHP71 php71
     ++ optional withPHP72 php72
     ++ optional withPHP73 php73
     ++ optional withPerl perl
@@ -51,7 +49,6 @@ stdenv.mkDerivation rec {
 
   postConfigure = ''
     ${optionalString withPython     "./configure python  --module=python    --config=${python}/bin/python-config  --lib-path=${python}/lib"}
-    ${optionalString withPHP71      "./configure php     --module=php71     --config=${php71.dev}/bin/php-config  --lib-path=${php71}/lib"}
     ${optionalString withPHP72      "./configure php     --module=php72     --config=${php72.dev}/bin/php-config  --lib-path=${php72}/lib"}
     ${optionalString withPHP73      "./configure php     --module=php73     --config=${php73.dev}/bin/php-config  --lib-path=${php73}/lib"}
     ${optionalString withPerl       "./configure perl    --module=perl      --perl=${perl}/bin/perl"}