summary refs log tree commit diff
path: root/nixos/tests/php/default.nix
blob: ee7a3b56a3ef03ab71dcdcb09ee845af86705a63 (plain) (blame)
1
2
3
4
5
6
7
8
{ system ? builtins.currentSystem,
  config ? {},
  pkgs ? import ../../.. { inherit system config; }
}: {
  fpm = import ./fpm.nix { inherit system pkgs; };
  httpd = import ./httpd.nix { inherit system pkgs; };
  pcre = import ./pcre.nix { inherit system pkgs; };
}