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