forked from mirrors/nixpkgs
2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
132 lines
3.3 KiB
Nix
132 lines
3.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.icecast;
|
|
configFile = pkgs.writeText "icecast.xml" ''
|
|
<icecast>
|
|
<hostname>${cfg.hostname}</hostname>
|
|
|
|
<authentication>
|
|
<admin-user>${cfg.admin.user}</admin-user>
|
|
<admin-password>${cfg.admin.password}</admin-password>
|
|
</authentication>
|
|
|
|
<paths>
|
|
<logdir>${cfg.logDir}</logdir>
|
|
<adminroot>${pkgs.icecast}/share/icecast/admin</adminroot>
|
|
<webroot>${pkgs.icecast}/share/icecast/web</webroot>
|
|
<alias source="/" dest="/status.xsl"/>
|
|
</paths>
|
|
|
|
<listen-socket>
|
|
<port>${toString cfg.listen.port}</port>
|
|
<bind-address>${cfg.listen.address}</bind-address>
|
|
</listen-socket>
|
|
|
|
<security>
|
|
<chroot>0</chroot>
|
|
<changeowner>
|
|
<user>${cfg.user}</user>
|
|
<group>${cfg.group}</group>
|
|
</changeowner>
|
|
</security>
|
|
|
|
${cfg.extraConf}
|
|
</icecast>
|
|
'';
|
|
in {
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.icecast = {
|
|
|
|
enable = mkEnableOption "Icecast server";
|
|
|
|
hostname = mkOption {
|
|
type = types.nullOr types.str;
|
|
description = lib.mdDoc "DNS name or IP address that will be used for the stream directory lookups or possibily the playlist generation if a Host header is not provided.";
|
|
default = config.networking.domain;
|
|
defaultText = literalExpression "config.networking.domain";
|
|
};
|
|
|
|
admin = {
|
|
user = mkOption {
|
|
type = types.str;
|
|
description = lib.mdDoc "Username used for all administration functions.";
|
|
default = "admin";
|
|
};
|
|
|
|
password = mkOption {
|
|
type = types.str;
|
|
description = lib.mdDoc "Password used for all administration functions.";
|
|
};
|
|
};
|
|
|
|
logDir = mkOption {
|
|
type = types.path;
|
|
description = lib.mdDoc "Base directory used for logging.";
|
|
default = "/var/log/icecast";
|
|
};
|
|
|
|
listen = {
|
|
port = mkOption {
|
|
type = types.int;
|
|
description = lib.mdDoc "TCP port that will be used to accept client connections.";
|
|
default = 8000;
|
|
};
|
|
|
|
address = mkOption {
|
|
type = types.str;
|
|
description = lib.mdDoc "Address Icecast will listen on.";
|
|
default = "::";
|
|
};
|
|
};
|
|
|
|
user = mkOption {
|
|
type = types.str;
|
|
description = lib.mdDoc "User privileges for the server.";
|
|
default = "nobody";
|
|
};
|
|
|
|
group = mkOption {
|
|
type = types.str;
|
|
description = lib.mdDoc "Group privileges for the server.";
|
|
default = "nogroup";
|
|
};
|
|
|
|
extraConf = mkOption {
|
|
type = types.lines;
|
|
description = lib.mdDoc "icecast.xml content.";
|
|
default = "";
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.icecast = {
|
|
after = [ "network.target" ];
|
|
description = "Icecast Network Audio Streaming Server";
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
preStart = "mkdir -p ${cfg.logDir} && chown ${cfg.user}:${cfg.group} ${cfg.logDir}";
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.icecast}/bin/icecast -c ${configFile}";
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|