summary refs log tree commit diff
path: root/nixos/tests/containers.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/containers.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/containers.nix')
-rw-r--r--nixos/tests/containers.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/nixos/tests/containers.nix b/nixos/tests/containers.nix
index e40a8100a06..c429f9c7b71 100644
--- a/nixos/tests/containers.nix
+++ b/nixos/tests/containers.nix
@@ -1,7 +1,10 @@
 # Test for NixOS' container support.
 
-import ./make-test.nix {
+import ./make-test.nix ({ pkgs, ...} : {
   name = "containers";
+  meta = with pkgs.stdenv.lib.maintainers; {
+    maintainers = [ aristid aszlig eelco chaoflow ];
+  };
 
   machine =
     { config, pkgs, ... }:
@@ -113,4 +116,4 @@ import ./make-test.nix {
       $machine->fail("nixos-container destroy webserver");
     '';
 
-}
+})