summary refs log tree commit diff
path: root/nixos/tests/simple.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/simple.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/simple.nix')
-rw-r--r--nixos/tests/simple.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/nixos/tests/simple.nix b/nixos/tests/simple.nix
index 1cd9058f9e5..287712be316 100644
--- a/nixos/tests/simple.nix
+++ b/nixos/tests/simple.nix
@@ -1,5 +1,8 @@
-import ./make-test.nix {
+import ./make-test.nix ({ pkgs, ...} : {
   name = "simple";
+  meta = with pkgs.stdenv.lib.maintainers; {
+    maintainers = [ eelco ];
+  };
 
   machine = { config, pkgs, ... }: { };
 
@@ -9,4 +12,4 @@ import ./make-test.nix {
       $machine->waitForUnit("multi-user.target");
       $machine->shutdown;
     '';
-}
+})