summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2017-03-20 12:13:27 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2017-04-10 20:04:17 -0400
commit8f4d778509271c8cd1e1b8ab1f01c2de038cc7ba (patch)
tree3d29e1a0c1a0168331eb5f98d3cae260b5e1bd09 /nixos/tests
parenta3143b18e00f18a7fff1cb6181d4feaeffd24142 (diff)
downloadnixlib-8f4d778509271c8cd1e1b8ab1f01c2de038cc7ba.tar
nixlib-8f4d778509271c8cd1e1b8ab1f01c2de038cc7ba.tar.gz
nixlib-8f4d778509271c8cd1e1b8ab1f01c2de038cc7ba.tar.bz2
nixlib-8f4d778509271c8cd1e1b8ab1f01c2de038cc7ba.tar.lz
nixlib-8f4d778509271c8cd1e1b8ab1f01c2de038cc7ba.tar.xz
nixlib-8f4d778509271c8cd1e1b8ab1f01c2de038cc7ba.tar.zst
nixlib-8f4d778509271c8cd1e1b8ab1f01c2de038cc7ba.zip
radicale: Add aneeshusa as maintainer
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/radicale.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/nixos/tests/radicale.nix b/nixos/tests/radicale.nix
index f0d46d48a752..4c2ed8456ddd 100644
--- a/nixos/tests/radicale.nix
+++ b/nixos/tests/radicale.nix
@@ -48,8 +48,9 @@ ht.save()
     '';
   };
 
-in import ./make-test.nix {
+in import ./make-test.nix ({ lib, ... }: {
   name = "radicale";
+  meta.maintainers = with lib.maintainers; [ aneeshusa ];
 
   # Test radicale with bcrypt-based htpasswd authentication
   nodes = {
@@ -76,4 +77,4 @@ in import ./make-test.nix {
       $machine->succeed('curl -s http://someuser:really_secret_password@127.0.0.1:${builtins.toString port}/someuser/calendar.ics/');
     }
   '';
-}
+})