
This test checks that we evaluate PHP properly and that certain extensions are actually loaded.
7 lines
160 B
Nix
7 lines
160 B
Nix
{ system ? builtins.currentSystem,
|
|
config ? {},
|
|
pkgs ? import ../../.. { inherit system config; }
|
|
}: {
|
|
fpm = import ./fpm.nix { inherit system pkgs; };
|
|
}
|