mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2025-01-09 09:21:04 +00:00
33 lines
913 B
Nix
33 lines
913 B
Nix
{
|
|
description = "Roundcube is a web-based email client.";
|
|
|
|
outputs = { self }: {
|
|
nixosModules.default = import ./module.nix;
|
|
configPathsNeeded =
|
|
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
|
meta = { lib, ... }: {
|
|
spModuleManifestVersion = 1;
|
|
id = "roundcube";
|
|
name = "Roundcube";
|
|
description = "Roundcube is an open source webmail software.";
|
|
svgIcon = builtins.readFile ./icon.svg;
|
|
isMovable = false;
|
|
isRequired = false;
|
|
canBeBackedUp = true;
|
|
backupDescription = "Users' settings.";
|
|
postgreDatabases = [
|
|
"roundcube"
|
|
];
|
|
systemdServices = [
|
|
"phpfpm-roundcube.service"
|
|
];
|
|
license = [
|
|
lib.licenses.gpl3
|
|
];
|
|
homepage = "https://roundcube.net/";
|
|
sourcePage = "https://github.com/roundcube/roundcubemail";
|
|
supportLevel = "normal";
|
|
};
|
|
};
|
|
}
|