2023-12-04 15:43:06 +04:00
|
|
|
{
|
|
|
|
description = "PoC SP module for Jitsi Meet video conferences server";
|
|
|
|
|
2025-05-22 16:50:34 +03:00
|
|
|
inputs.nixpkgs-2405.url = "github:NixOS/nixpkgs/nixos-24.05";
|
|
|
|
|
2025-06-18 19:53:44 +03:00
|
|
|
outputs =
|
2025-05-22 16:50:34 +03:00
|
|
|
{ self, nixpkgs-2405 }:
|
2025-06-18 19:53:44 +03:00
|
|
|
{
|
2025-05-22 16:50:34 +03:00
|
|
|
nixosModules.default = import ./module.nix nixpkgs-2405.legacyPackages.x86_64-linux;
|
2025-06-18 19:53:44 +03:00
|
|
|
configPathsNeeded = builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
|
|
|
meta =
|
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
|
|
spModuleSchemaVersion = 1;
|
|
|
|
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";
|
|
|
|
};
|
2024-12-18 15:40:15 +03:00
|
|
|
};
|
2023-12-04 15:43:06 +04:00
|
|
|
}
|