mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-18 07:29:23 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
90 lines
2.2 KiB
Nix
90 lines
2.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
|
|
cfg = config.services.serviio;
|
|
|
|
serviioStart = pkgs.writeScript "serviio.sh" ''
|
|
#!${pkgs.bash}/bin/sh
|
|
|
|
SERVIIO_HOME=${pkgs.serviio}
|
|
|
|
# Setup the classpath
|
|
SERVIIO_CLASS_PATH="$SERVIIO_HOME/lib/*:$SERVIIO_HOME/config"
|
|
|
|
# Setup Serviio specific properties
|
|
JAVA_OPTS="-Djava.net.preferIPv4Stack=true -Djava.awt.headless=true -Dorg.restlet.engine.loggerFacadeClass=org.restlet.ext.slf4j.Slf4jLoggerFacade
|
|
-Dderby.system.home=${cfg.dataDir}/library -Dserviio.home=${cfg.dataDir} -Dffmpeg.location=${pkgs.ffmpeg}/bin/ffmpeg -Ddcraw.location=${pkgs.dcraw}/bin/dcraw"
|
|
|
|
# Execute the JVM in the foreground
|
|
exec ${pkgs.jre}/bin/java -Xmx512M -Xms20M -XX:+UseG1GC -XX:GCTimeRatio=1 -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=20 $JAVA_OPTS -classpath "$SERVIIO_CLASS_PATH" org.serviio.MediaServer "$@"
|
|
'';
|
|
|
|
in
|
|
{
|
|
|
|
###### interface
|
|
options = {
|
|
services.serviio = {
|
|
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable the Serviio Media Server.
|
|
'';
|
|
};
|
|
|
|
dataDir = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/var/lib/serviio";
|
|
description = ''
|
|
The directory where serviio stores its state, data, etc.
|
|
'';
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
systemd.services.serviio = {
|
|
description = "Serviio Media Server";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = [ pkgs.serviio ];
|
|
serviceConfig = {
|
|
User = "serviio";
|
|
Group = "serviio";
|
|
ExecStart = "${serviioStart}";
|
|
ExecStop = "${serviioStart} -stop";
|
|
};
|
|
};
|
|
|
|
users.users.serviio = {
|
|
group = "serviio";
|
|
home = cfg.dataDir;
|
|
description = "Serviio Media Server User";
|
|
createHome = true;
|
|
isSystemUser = true;
|
|
};
|
|
|
|
users.groups.serviio = { };
|
|
|
|
networking.firewall = {
|
|
allowedTCPPorts = [
|
|
8895 # serve UPnP responses
|
|
23423 # console
|
|
23424 # mediabrowser
|
|
];
|
|
allowedUDPPorts = [
|
|
1900 # UPnP service discovery
|
|
];
|
|
};
|
|
};
|
|
}
|