nixos/tests/php: Declare php package used instead of just using default
This commit is contained in:
@@ -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; };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user