summary refs log tree commit diff
path: root/nixos/tests/php
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2020-04-29 19:56:37 +0200
committerGitHub <noreply@github.com>2020-04-29 19:56:37 +0200
commit410c38f3171c6d6f2dc6de9e4766e41f46a52a94 (patch)
treeb327659ca9da42dba44240a42a7c3f5b56e9ed20 /nixos/tests/php
parent3b21abb3d3353d4be767f53db216f65cc8048551 (diff)
downloadnixpkgs-410c38f3171c6d6f2dc6de9e4766e41f46a52a94.tar
nixpkgs-410c38f3171c6d6f2dc6de9e4766e41f46a52a94.tar.gz
nixpkgs-410c38f3171c6d6f2dc6de9e4766e41f46a52a94.tar.bz2
nixpkgs-410c38f3171c6d6f2dc6de9e4766e41f46a52a94.tar.lz
nixpkgs-410c38f3171c6d6f2dc6de9e4766e41f46a52a94.tar.xz
nixpkgs-410c38f3171c6d6f2dc6de9e4766e41f46a52a94.tar.zst
nixpkgs-410c38f3171c6d6f2dc6de9e4766e41f46a52a94.zip
Revert "PHP maintainer team"
Diffstat (limited to 'nixos/tests/php')
-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, 5 insertions, 7 deletions
diff --git a/nixos/tests/php/fpm.nix b/nixos/tests/php/fpm.nix
index 513abd94373..1e4ced24b6c 100644
--- a/nixos/tests/php/fpm.nix
+++ b/nixos/tests/php/fpm.nix
@@ -1,6 +1,6 @@
-import ../make-test-python.nix ({pkgs, lib, ...}: {
+import ../make-test-python.nix ({pkgs, ...}: {
   name = "php-fpm-nginx-test";
-  meta.maintainers = lib.teams.php.members;
+  meta.maintainers = with pkgs.stdenv.lib.maintainers; [ etu ];
 
   machine = { config, lib, pkgs, ... }: {
     services.nginx = {
diff --git a/nixos/tests/php/httpd.nix b/nixos/tests/php/httpd.nix
index 1092e0ecadd..fc3ff986734 100644
--- a/nixos/tests/php/httpd.nix
+++ b/nixos/tests/php/httpd.nix
@@ -1,6 +1,6 @@
-import ../make-test-python.nix ({pkgs, lib, ...}: {
+import ../make-test-python.nix ({pkgs, ...}: {
   name = "php-httpd-test";
-  meta.maintainers = lib.teams.php.members;
+  meta.maintainers = with pkgs.stdenv.lib.maintainers; [ etu ];
 
   machine = { config, lib, pkgs, ... }: {
     services.httpd = {
diff --git a/nixos/tests/php/pcre.nix b/nixos/tests/php/pcre.nix
index 3dd0964e60f..016dca81d52 100644
--- a/nixos/tests/php/pcre.nix
+++ b/nixos/tests/php/pcre.nix
@@ -1,9 +1,7 @@
 let
   testString = "can-use-subgroups";
-in import ../make-test-python.nix ({lib, ...}: {
+in import ../make-test-python.nix ({ ...}: {
   name = "php-httpd-pcre-jit-test";
-  meta.maintainers = lib.teams.php.members;
-
   machine = { lib, pkgs, ... }: {
     time.timeZone = "UTC";
     services.httpd = {