summaryrefslogtreecommitdiffstats
path: root/nixos/tests
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2020-04-29 19:56:03 +0200
committerGitHub <noreply@github.com>2020-04-29 19:56:03 +0200
commit3b21abb3d3353d4be767f53db216f65cc8048551 (patch)
treeaedd0c01e2780e400278b1008f380d15741690e2 /nixos/tests
parent3b00e78e63b6539369821660245cd579f6723b58 (diff)
parent4b436226cfeb728691bb8ea75a2d06fab4081e1a (diff)
Merge pull request #85575 from etu/php-maintainer-team
PHP maintainer team
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/php/fpm.nix4
-rw-r--r--nixos/tests/php/httpd.nix4
-rw-r--r--nixos/tests/php/pcre.nix4
3 files changed, 7 insertions, 5 deletions
diff --git a/nixos/tests/php/fpm.nix b/nixos/tests/php/fpm.nix
index 1e4ced24b6c3..513abd943737 100644
--- a/nixos/tests/php/fpm.nix
+++ b/nixos/tests/php/fpm.nix
@@ -1,6 +1,6 @@
-import ../make-test-python.nix ({pkgs, ...}: {
+import ../make-test-python.nix ({pkgs, lib, ...}: {
name = "php-fpm-nginx-test";
- meta.maintainers = with pkgs.stdenv.lib.maintainers; [ etu ];
+ meta.maintainers = lib.teams.php.members;
machine = { config, lib, pkgs, ... }: {
services.nginx = {
diff --git a/nixos/tests/php/httpd.nix b/nixos/tests/php/httpd.nix
index fc3ff986734e..1092e0ecadd3 100644
--- a/nixos/tests/php/httpd.nix
+++ b/nixos/tests/php/httpd.nix
@@ -1,6 +1,6 @@
-import ../make-test-python.nix ({pkgs, ...}: {
+import ../make-test-python.nix ({pkgs, lib, ...}: {
name = "php-httpd-test";
- meta.maintainers = with pkgs.stdenv.lib.maintainers; [ etu ];
+ meta.maintainers = lib.teams.php.members;
machine = { config, lib, pkgs, ... }: {
services.httpd = {
diff --git a/nixos/tests/php/pcre.nix b/nixos/tests/php/pcre.nix
index 016dca81d522..3dd0964e60fb 100644
--- a/nixos/tests/php/pcre.nix
+++ b/nixos/tests/php/pcre.nix
@@ -1,7 +1,9 @@
let
testString = "can-use-subgroups";
-in import ../make-test-python.nix ({ ...}: {
+in import ../make-test-python.nix ({lib, ...}: {
name = "php-httpd-pcre-jit-test";
+ meta.maintainers = lib.teams.php.members;
+
machine = { lib, pkgs, ... }: {
time.timeZone = "UTC";
services.httpd = {