summary refs log tree commit diff
path: root/nixos/tests/ipv6.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/ipv6.nix
parent7e021a0fd636587ff7908387f8c2fd97d34c772a (diff)
downloadnixpkgs-0731489953dfd6f5a9f6949729f5383a517b2e18.tar
nixpkgs-0731489953dfd6f5a9f6949729f5383a517b2e18.tar.gz
nixpkgs-0731489953dfd6f5a9f6949729f5383a517b2e18.tar.bz2
nixpkgs-0731489953dfd6f5a9f6949729f5383a517b2e18.tar.lz
nixpkgs-0731489953dfd6f5a9f6949729f5383a517b2e18.tar.xz
nixpkgs-0731489953dfd6f5a9f6949729f5383a517b2e18.tar.zst
nixpkgs-0731489953dfd6f5a9f6949729f5383a517b2e18.zip
all tests: added meta.maintainers section
Diffstat (limited to 'nixos/tests/ipv6.nix')
-rw-r--r--nixos/tests/ipv6.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/nixos/tests/ipv6.nix b/nixos/tests/ipv6.nix
index 017511ea45c..4e2e6379cad 100644
--- a/nixos/tests/ipv6.nix
+++ b/nixos/tests/ipv6.nix
@@ -1,8 +1,11 @@
 # Test of IPv6 functionality in NixOS, including whether router
 # solicication/advertisement using radvd works.
 
-import ./make-test.nix {
+import ./make-test.nix ({ pkgs, ...} : {
   name = "ipv6";
+  meta = with pkgs.stdenv.lib.maintainers; {
+    maintainers = [ eelco chaoflow ];
+  };
 
   nodes =
     { client = { config, pkgs, ... }: { };
@@ -73,5 +76,4 @@ import ./make-test.nix {
 
       # TODO: test reachability of a machine on another network.
     '';
-
-}
+})