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.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user