nixpkgs/nixos/tests/php/default.nix

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

25 lines
379 B
Nix
Raw Permalink Normal View History

{
2025-03-14 19:11:10 +01:00
runTest,
php,
}:
let
php' = php.buildEnv {
extensions = { enabled, all }: with all; enabled ++ [ apcu ];
};
in
{
2025-03-14 19:11:10 +01:00
fpm = runTest {
imports = [ ./fpm.nix ];
_module.args.php = php';
};
2025-03-14 19:11:10 +01:00
httpd = runTest {
imports = [ ./httpd.nix ];
_module.args.php = php';
};
2025-03-14 19:11:10 +01:00
pcre = runTest {
imports = [ ./pcre.nix ];
_module.args.php = php';
};
}