summary refs log blame commit diff
path: root/nixos/tests/php/default.nix
blob: 6ecaed2460464130ebe146f88e0162dc6a617fc2 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                   
    


                                                          
 
{ system ? builtins.currentSystem
, config ? {}
, pkgs ? import ../../.. { inherit system config; }
, php ? pkgs.php
}: {
  fpm = import ./fpm.nix { inherit system pkgs php; };
  httpd = import ./httpd.nix { inherit system pkgs php; };
  pcre = import ./pcre.nix { inherit system pkgs php; };
}