Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
476 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
runTest,
php,
}:
let
php' = php.buildEnv {
extensions = { enabled, all }: with all; enabled ++ [ apcu ];
};
in
{
fpm = runTest {
imports = [ ./fpm.nix ];
_module.args.php = php';
};
fpm-modular = runTest {
imports = [ ./fpm-modular.nix ];
_module.args.php = php';
};
httpd = runTest {
imports = [ ./httpd.nix ];
_module.args.php = php';
};
pcre = runTest {
imports = [ ./pcre.nix ];
_module.args.php = php';
};
}