about summary refs log tree commit diff
path: root/pkgs/servers/http/unit
diff options
context:
space:
mode:
authortalyz <kim.lindberger@gmail.com>2020-04-24 13:29:46 +0200
committertalyz <kim.lindberger@gmail.com>2020-04-26 16:43:23 +0200
commit72636bc2f6321e5e25414904685ba9fbabbbfb56 (patch)
treeeeed3af04ca76687d5c902d757b2d4f7c65282e1 /pkgs/servers/http/unit
parent2ba79269590cd186c3ad6e5226c4322de8984d87 (diff)
downloadnixlib-72636bc2f6321e5e25414904685ba9fbabbbfb56.tar
nixlib-72636bc2f6321e5e25414904685ba9fbabbbfb56.tar.gz
nixlib-72636bc2f6321e5e25414904685ba9fbabbbfb56.tar.bz2
nixlib-72636bc2f6321e5e25414904685ba9fbabbbfb56.tar.lz
nixlib-72636bc2f6321e5e25414904685ba9fbabbbfb56.tar.xz
nixlib-72636bc2f6321e5e25414904685ba9fbabbbfb56.tar.zst
nixlib-72636bc2f6321e5e25414904685ba9fbabbbfb56.zip
php: Get rid of all config.php parameters
Since all options controlled by the config.php parameters can now be
overridden directly, there's no reason to keep them around.
Diffstat (limited to 'pkgs/servers/http/unit')
-rw-r--r--pkgs/servers/http/unit/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/servers/http/unit/default.nix b/pkgs/servers/http/unit/default.nix
index 1e3ddb4ad8f1..f8992bf166b3 100644
--- a/pkgs/servers/http/unit/default.nix
+++ b/pkgs/servers/http/unit/default.nix
@@ -18,12 +18,12 @@ with stdenv.lib;
 
 let
   phpConfig = {
-    config.php.embed = true;
-    config.php.apxs2 = false;
-    config.php.systemd = false;
-    config.php.phpdbg = false;
-    config.php.cgi = false;
-    config.php.fpm = false;
+    embedSupport = true;
+    apxs2Support = false;
+    systemdSupport = false;
+    phpdbgSupport = false;
+    cgiSupport = false;
+    fpmSupport = false;
   };
 
   php72-unit = php72base.override phpConfig;