summary refs log tree commit diff
path: root/nixos/tests/php/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/php/default.nix')
-rw-r--r--nixos/tests/php/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/nixos/tests/php/default.nix b/nixos/tests/php/default.nix
new file mode 100644
index 00000000000..9ab14f722d0
--- /dev/null
+++ b/nixos/tests/php/default.nix
@@ -0,0 +1,7 @@
+{ system ? builtins.currentSystem,
+  config ? {},
+  pkgs ? import ../../.. { inherit system config; }
+}: {
+  fpm = import ./fpm.nix { inherit system pkgs; };
+  pcre = import ./pcre.nix { inherit system pkgs; };
+}