2024-12-18 12:40:15 +00:00
|
|
|
{
|
|
|
|
description = "PoC SP module for Mumble conferences server";
|
|
|
|
|
|
|
|
outputs = { self }: {
|
|
|
|
nixosModules.default = import ./module.nix;
|
|
|
|
configPathsNeeded =
|
|
|
|
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
|
|
|
meta = { lib, ... }: {
|
2024-12-24 18:07:29 +00:00
|
|
|
spModuleSchemaVersion = 1;
|
2024-12-18 12:40:15 +00:00
|
|
|
id = "mumble";
|
|
|
|
name = "Mumble";
|
|
|
|
description = "Open Source, Low Latency, High Quality Voice Chat.";
|
|
|
|
svgIcon = builtins.readFile ./icon.svg;
|
|
|
|
showUrl = false;
|
|
|
|
isMovable = true;
|
|
|
|
isRequired = false;
|
|
|
|
canBeBackedUp = true;
|
|
|
|
backupDescription = "Mumble server data.";
|
|
|
|
systemdServices = [
|
|
|
|
"murmur.service"
|
|
|
|
];
|
|
|
|
user = "murmur";
|
|
|
|
group = "murmur";
|
|
|
|
folders = [
|
|
|
|
"/var/lib/murmur"
|
|
|
|
];
|
|
|
|
license = [
|
|
|
|
lib.licenses.bsd3
|
|
|
|
];
|
|
|
|
homepage = "https://www.mumble.info";
|
|
|
|
sourcePage = "https://github.com/mumble-voip/mumble";
|
|
|
|
supportLevel = "normal";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|