summary refs log tree commit diff
path: root/nixos/tests/php/default.nix
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2020-03-30 22:07:05 +0200
committertalyz <kim.lindberger@gmail.com>2020-04-05 16:44:54 +0200
commit29e1f0d1691ee1b02dc9dd2af24a6f1b169a1f21 (patch)
tree012a2ca07f21a2b02316678776b007db34b2e42d /nixos/tests/php/default.nix
parentfc1034a1fab64bb386806901565e6dd2f2683f0f (diff)
downloadnixpkgs-29e1f0d1691ee1b02dc9dd2af24a6f1b169a1f21.tar
nixpkgs-29e1f0d1691ee1b02dc9dd2af24a6f1b169a1f21.tar.gz
nixpkgs-29e1f0d1691ee1b02dc9dd2af24a6f1b169a1f21.tar.bz2
nixpkgs-29e1f0d1691ee1b02dc9dd2af24a6f1b169a1f21.tar.lz
nixpkgs-29e1f0d1691ee1b02dc9dd2af24a6f1b169a1f21.tar.xz
nixpkgs-29e1f0d1691ee1b02dc9dd2af24a6f1b169a1f21.tar.zst
nixpkgs-29e1f0d1691ee1b02dc9dd2af24a6f1b169a1f21.zip
nixos/php: Add tests for phpfpm
This test checks that we evaluate PHP properly and that certain
extensions are actually loaded.
Diffstat (limited to 'nixos/tests/php/default.nix')
-rw-r--r--nixos/tests/php/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixos/tests/php/default.nix b/nixos/tests/php/default.nix
new file mode 100644
index 00000000000..c5735bd664d
--- /dev/null
+++ b/nixos/tests/php/default.nix
@@ -0,0 +1,6 @@
+{ system ? builtins.currentSystem,
+  config ? {},
+  pkgs ? import ../../.. { inherit system config; }
+}: {
+  fpm = import ./fpm.nix { inherit system pkgs; };
+}