about summary refs log tree commit diff
path: root/pkgs/servers/http/unit
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2021-06-03 19:17:27 +0200
committerElis Hirwing <elis@hirwing.se>2021-06-04 09:27:07 +0200
commitc76bebc549f2bd81bf5c70617d3d564a1ae6e8d1 (patch)
tree23c129e3fbcb975746da049c10cf6c79015ed1d7 /pkgs/servers/http/unit
parentfb644190a0523d473129e3a86599ec50c2bafe77 (diff)
downloadnixlib-c76bebc549f2bd81bf5c70617d3d564a1ae6e8d1.tar
nixlib-c76bebc549f2bd81bf5c70617d3d564a1ae6e8d1.tar.gz
nixlib-c76bebc549f2bd81bf5c70617d3d564a1ae6e8d1.tar.bz2
nixlib-c76bebc549f2bd81bf5c70617d3d564a1ae6e8d1.tar.lz
nixlib-c76bebc549f2bd81bf5c70617d3d564a1ae6e8d1.tar.xz
nixlib-c76bebc549f2bd81bf5c70617d3d564a1ae6e8d1.tar.zst
nixlib-c76bebc549f2bd81bf5c70617d3d564a1ae6e8d1.zip
unit: Add php80 and use it as default
Diffstat (limited to 'pkgs/servers/http/unit')
-rw-r--r--pkgs/servers/http/unit/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/servers/http/unit/default.nix b/pkgs/servers/http/unit/default.nix
index d8e46231b74b..cb5fafd17cf7 100644
--- a/pkgs/servers/http/unit/default.nix
+++ b/pkgs/servers/http/unit/default.nix
@@ -2,7 +2,8 @@
 , pcre2
 , withPython2 ? false, python2
 , withPython3 ? true, python3, ncurses
-, withPHP74 ? true, php74
+, withPHP74 ? false, php74
+, withPHP80 ? true, php80
 , withPerl530 ? false, perl530
 , withPerl532 ? true, perl532
 , withPerldevel ? false, perldevel
@@ -26,6 +27,7 @@ let
   };
 
   php74-unit = php74.override phpConfig;
+  php80-unit = php80.override phpConfig;
 
 in stdenv.mkDerivation rec {
   version = "1.24.0";
@@ -44,6 +46,7 @@ in stdenv.mkDerivation rec {
     ++ optional withPython2 python2
     ++ optionals withPython3 [ python3 ncurses ]
     ++ optional withPHP74 php74-unit
+    ++ optional withPHP80 php80-unit
     ++ optional withPerl530 perl530
     ++ optional withPerl532 perl532
     ++ optional withPerldevel perldevel
@@ -62,11 +65,13 @@ in stdenv.mkDerivation rec {
 
   # Optionally add the PHP derivations used so they can be addressed in the configs
   usedPhp74 = optionals withPHP74 php74-unit;
+  usedPhp80 = optionals withPHP80 php80-unit;
 
   postConfigure = ''
     ${optionalString withPython2    "./configure python --module=python2  --config=python2-config  --lib-path=${python2}/lib"}
     ${optionalString withPython3    "./configure python --module=python3  --config=python3-config  --lib-path=${python3}/lib"}
     ${optionalString withPHP74      "./configure php    --module=php74    --config=${php74-unit.unwrapped.dev}/bin/php-config --lib-path=${php74-unit}/lib"}
+    ${optionalString withPHP80      "./configure php    --module=php80    --config=${php80-unit.unwrapped.dev}/bin/php-config --lib-path=${php80-unit}/lib"}
     ${optionalString withPerl530    "./configure perl   --module=perl530  --perl=${perl530}/bin/perl"}
     ${optionalString withPerl532    "./configure perl   --module=perl532  --perl=${perl532}/bin/perl"}
     ${optionalString withPerldevel  "./configure perl   --module=perldev  --perl=${perldevel}/bin/perl"}