2023-12-04 11:43:06 +00:00
|
|
|
{
|
|
|
|
description = "PoC SP module for Jitsi Meet video conferences server";
|
|
|
|
|
|
|
|
outputs = { self }: {
|
|
|
|
nixosModules.default = import ./module.nix;
|
|
|
|
configPathsNeeded =
|
|
|
|
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
2024-12-18 12:40:15 +00:00
|
|
|
meta = { lib, ... }: {
|
2024-12-24 17:55:19 +00:00
|
|
|
spModuleManifestVersion = 1;
|
2024-12-18 12:40:15 +00:00
|
|
|
id = "jitsi-meet";
|
|
|
|
name = "JitsiMeet";
|
|
|
|
description = "Jitsi Meet is a free and open-source video conferencing solution.";
|
|
|
|
svgIcon = builtins.readFile ./icon.svg;
|
|
|
|
isMovable = false;
|
|
|
|
isRequired = false;
|
|
|
|
backupDescription = "Secrets that are used to encrypt the communication.";
|
|
|
|
systemdServices = [
|
|
|
|
"prosody.service"
|
|
|
|
"jitsi-videobridge2.service"
|
|
|
|
"jicofo.service"
|
|
|
|
];
|
|
|
|
folders = [
|
|
|
|
"/var/lib/jitsi-meet"
|
|
|
|
];
|
|
|
|
license = [
|
|
|
|
lib.licenses.asl20
|
|
|
|
];
|
|
|
|
homepage = "https://jitsi.org/meet";
|
|
|
|
sourcePage = "https://github.com/jitsi/jitsi-meet";
|
|
|
|
supportLevel = "normal";
|
|
|
|
};
|
2023-12-04 11:43:06 +00:00
|
|
|
};
|
|
|
|
}
|