aboutsummaryrefslogtreecommitdiff
path: root/nixos/tests/gnome3.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/gnome3.nix
parent7e021a0fd636587ff7908387f8c2fd97d34c772a (diff)
all tests: added meta.maintainers section
Diffstat (limited to 'nixos/tests/gnome3.nix')
-rw-r--r--nixos/tests/gnome3.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/nixos/tests/gnome3.nix b/nixos/tests/gnome3.nix
index 6f2925e52fa4..f5e0159f1c7d 100644
--- a/nixos/tests/gnome3.nix
+++ b/nixos/tests/gnome3.nix
@@ -1,5 +1,8 @@
-import ./make-test.nix {
+import ./make-test.nix ({ pkgs, ...} : {
name = "gnome3";
+ meta = with pkgs.stdenv.lib.maintainers; {
+ maintainers = [ iElectric eelco chaoflow lethalman ];
+ };
machine =
{ config, pkgs, ... }:
@@ -28,5 +31,4 @@ import ./make-test.nix {
$machine->sleep(20);
$machine->screenshot("screen");
'';
-
-}
+})