1 import ./make-test-python.nix ({ pkgs, ...} : {
3 meta = with pkgs.lib.maintainers; {
4 maintainers = [ globin ];
8 roundcube = { config, pkgs, ... }: {
11 hostName = "roundcube";
12 database.password = "not production";
13 package = pkgs.roundcube.withPlugins (plugins: [ plugins.persistent_login ]);
14 plugins = [ "persistent_login" ];
15 dicts = with pkgs.aspellDicts; [ en fr de ];
17 services.nginx.virtualHosts.roundcube = {
26 roundcube.wait_for_unit("postgresql.service")
27 roundcube.wait_for_unit("phpfpm-roundcube.service")
28 roundcube.wait_for_unit("nginx.service")
29 roundcube.succeed("curl -sSfL http://roundcube/ | grep 'Keep me logged in'")