nixos/tests/php: Declare php package used instead of just using default

This commit is contained in:
Elis Hirwing
2021-02-28 12:37:05 +01:00
parent ac8a8fe2fa
commit c6f0a1db39
4 changed files with 18 additions and 14 deletions
+7 -6
View File
@@ -1,8 +1,9 @@
{ system ? builtins.currentSystem,
config ? {},
pkgs ? import ../../.. { inherit system config; }
{ system ? builtins.currentSystem
, config ? {}
, pkgs ? import ../../.. { inherit system config; }
, php ? pkgs.php
}: {
fpm = import ./fpm.nix { inherit system pkgs; };
httpd = import ./httpd.nix { inherit system pkgs; };
pcre = import ./pcre.nix { inherit system pkgs; };
fpm = import ./fpm.nix { inherit system pkgs php; };
httpd = import ./httpd.nix { inherit system pkgs php; };
pcre = import ./pcre.nix { inherit system pkgs php; };
}