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";
};
};
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";
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/');
}
'';
}
})

View file

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