radicale: Add aneeshusa as maintainer

This commit is contained in:
Aneesh Agrawal 2017-03-20 12:13:27 -04:00
parent a3143b18e0
commit 8f4d778509
3 changed files with 6 additions and 3 deletions

View File

@ -57,4 +57,6 @@ in
serviceConfig.Group = "radicale"; serviceConfig.Group = "radicale";
}; };
}; };
meta.maintainers = with lib.maintainers; [ aneeshusa ];
} }

View File

@ -48,8 +48,9 @@ ht.save()
''; '';
}; };
in import ./make-test.nix { in import ./make-test.nix ({ lib, ... }: {
name = "radicale"; name = "radicale";
meta.maintainers = with lib.maintainers; [ aneeshusa ];
# Test radicale with bcrypt-based htpasswd authentication # Test radicale with bcrypt-based htpasswd authentication
nodes = { 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/'); $machine->succeed('curl -s http://someuser:really_secret_password@127.0.0.1:${builtins.toString port}/someuser/calendar.ics/');
} }
''; '';
} })

View File

@ -29,6 +29,6 @@ pythonPackages.buildPythonApplication rec {
''; '';
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platform = platforms.all; platform = platforms.all;
maintainers = with maintainers; [ edwtjo pSub ]; maintainers = with maintainers; [ edwtjo pSub aneeshusa ];
}; };
} }