about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
author1000101 <b1000101@pm.me>2020-06-12 12:42:41 +0200
committer1000101 <b1000101@pm.me>2020-06-26 16:38:27 +0200
commit6c3b36212a0be328caeb95e332847e4129ec2176 (patch)
tree7c602d0d3cdc350d857ab423b6355dcac9752f5f /nixos/tests
parent64cf1e79dd77378046bf802e84c432ccf205a62f (diff)
maintainers: fix previously uncaught name issues
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/dokuwiki.nix5
-rw-r--r--nixos/tests/trezord.nix5
-rw-r--r--nixos/tests/trickster.nix4
3 files changed, 7 insertions, 7 deletions
diff --git a/nixos/tests/dokuwiki.nix b/nixos/tests/dokuwiki.nix
index 05271919effe8..4f00521c20217 100644
--- a/nixos/tests/dokuwiki.nix
+++ b/nixos/tests/dokuwiki.nix
@@ -32,8 +32,9 @@ let
 
 in {
   name = "dokuwiki";
-  meta.maintainers = with pkgs.lib.maintainers; [ "1000101" ];
-
+  meta = with pkgs.stdenv.lib; {
+    maintainers = with maintainers; [ maintainers."1000101" ];
+  };
   machine = { ... }: {
     services.dokuwiki."site1.local" = {
       aclUse = false;
diff --git a/nixos/tests/trezord.nix b/nixos/tests/trezord.nix
index 8d908a5224923..67646496ff97c 100644
--- a/nixos/tests/trezord.nix
+++ b/nixos/tests/trezord.nix
@@ -1,9 +1,8 @@
 import ./make-test-python.nix ({ pkgs, ... }: {
   name = "trezord";
-  meta = with pkgs.stdenv.lib.maintainers; {
-    maintainers = [ mmahut "1000101" ];
+  meta = with pkgs.stdenv.lib; {
+    maintainers = with maintainers; [ mmahut maintainers."1000101" ];
   };
-
   nodes = {
     machine = { ... }: {
       services.trezord.enable = true;
diff --git a/nixos/tests/trickster.nix b/nixos/tests/trickster.nix
index e2ca00980d539..aff4f7eb91259 100644
--- a/nixos/tests/trickster.nix
+++ b/nixos/tests/trickster.nix
@@ -1,7 +1,7 @@
 import ./make-test-python.nix ({ pkgs, ... }: {
   name = "trickster";
-  meta = with pkgs.stdenv.lib.maintainers; {
-    maintainers = [ "1000101" ];
+  meta = with pkgs.stdenv.lib; {
+    maintainers = with maintainers; [ maintainers."1000101" ];
   };
 
   nodes = {