summary refs log tree commit diff
path: root/nixos/tests/php
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2020-04-19 20:56:42 +0200
committerElis Hirwing <elis@hirwing.se>2020-04-22 06:48:06 +0200
commit9be2cbf27b82c111032d086d1f46e468b1ab6589 (patch)
tree5935f17733adf495d3225475fba9f94cdda7f928 /nixos/tests/php
parent4a2c4f9e03e153a55ba0667af1cebe1f9977ec57 (diff)
downloadnixpkgs-9be2cbf27b82c111032d086d1f46e468b1ab6589.tar
nixpkgs-9be2cbf27b82c111032d086d1f46e468b1ab6589.tar.gz
nixpkgs-9be2cbf27b82c111032d086d1f46e468b1ab6589.tar.bz2
nixpkgs-9be2cbf27b82c111032d086d1f46e468b1ab6589.tar.lz
nixpkgs-9be2cbf27b82c111032d086d1f46e468b1ab6589.tar.xz
nixpkgs-9be2cbf27b82c111032d086d1f46e468b1ab6589.tar.zst
nixpkgs-9be2cbf27b82c111032d086d1f46e468b1ab6589.zip
nixosTests.php: Add maintainer team as maintainers
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, 7 insertions, 5 deletions
diff --git a/nixos/tests/php/fpm.nix b/nixos/tests/php/fpm.nix
index 1e4ced24b6c..513abd94373 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 fc3ff986734..1092e0ecadd 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 016dca81d52..3dd0964e60f 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 = {