nixos/php: Add tests for phpfpm

This test checks that we evaluate PHP properly and that certain
extensions are actually loaded.
This commit is contained in:
Elis Hirwing
2020-04-05 16:44:54 +02:00
committed by talyz
parent fc1034a1fa
commit 29e1f0d169
3 changed files with 62 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
{ system ? builtins.currentSystem,
config ? {},
pkgs ? import ../../.. { inherit system config; }
}: {
fpm = import ./fpm.nix { inherit system pkgs; };
}