about summary refs log tree commit diff
path: root/nixos/tests/nat.nix
diff options
context:
space:
mode:
authorJoachim Schiele <js@lastlog.de>2015-07-12 12:09:40 +0200
committerJoachim Schiele <js@lastlog.de>2015-07-12 12:29:51 +0200
commit0731489953dfd6f5a9f6949729f5383a517b2e18 (patch)
tree0e26976afd1817f1dc714663557693d8bc61a58c /nixos/tests/nat.nix
parent7e021a0fd636587ff7908387f8c2fd97d34c772a (diff)
all tests: added meta.maintainers section
Diffstat (limited to 'nixos/tests/nat.nix')
-rw-r--r--nixos/tests/nat.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/tests/nat.nix b/nixos/tests/nat.nix
index c4d2614f78524..4fbf64462682d 100644
--- a/nixos/tests/nat.nix
+++ b/nixos/tests/nat.nix
@@ -3,12 +3,15 @@
 # client on the inside network, a server on the outside network, and a
 # router connected to both that performs Network Address Translation
 # for the client.
-import ./make-test.nix ({ withFirewall, ... }:
+import ./make-test.nix ({ pkgs, withFirewall, ... }:
   let
     unit = if withFirewall then "firewall" else "nat";
   in
   {
     name = "nat${if withFirewall then "WithFirewall" else "Standalone"}";
+  meta = with pkgs.stdenv.lib.maintainers; {
+      maintainers = [ eelco chaoflow rob wkennington ];
+    };
 
     nodes =
       { client =