mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-25 02:26:19 +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-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
--argstr baseRev b32a094368
result/bin/apply-formatting $NIXPKGS_PATH
179 lines
5.3 KiB
Nix
179 lines
5.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
options,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.airsonic;
|
|
opt = options.services.airsonic;
|
|
in
|
|
{
|
|
options = {
|
|
|
|
services.airsonic = {
|
|
enable = lib.mkEnableOption "Airsonic, the Free and Open Source media streaming server (fork of Subsonic and Libresonic)";
|
|
|
|
user = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "airsonic";
|
|
description = "User account under which airsonic runs.";
|
|
};
|
|
|
|
home = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/var/lib/airsonic";
|
|
description = ''
|
|
The directory where Airsonic will create files.
|
|
Make sure it is writable.
|
|
'';
|
|
};
|
|
|
|
virtualHost = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.str;
|
|
default = null;
|
|
description = ''
|
|
Name of the nginx virtualhost to use and setup. If null, do not setup any virtualhost.
|
|
'';
|
|
};
|
|
|
|
listenAddress = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "127.0.0.1";
|
|
description = ''
|
|
The host name or IP address on which to bind Airsonic.
|
|
The default value is appropriate for first launch, when the
|
|
default credentials are easy to guess. It is also appropriate
|
|
if you intend to use the virtualhost option in the service
|
|
module. In other cases, you may want to change this to a
|
|
specific IP or 0.0.0.0 to listen on all interfaces.
|
|
'';
|
|
};
|
|
|
|
port = lib.mkOption {
|
|
type = lib.types.port;
|
|
default = 4040;
|
|
description = ''
|
|
The port on which Airsonic will listen for
|
|
incoming HTTP traffic. Set to 0 to disable.
|
|
'';
|
|
};
|
|
|
|
contextPath = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/";
|
|
description = ''
|
|
The context path, i.e., the last part of the Airsonic
|
|
URL. Typically '/' or '/airsonic'. Default '/'
|
|
'';
|
|
};
|
|
|
|
maxMemory = lib.mkOption {
|
|
type = lib.types.int;
|
|
default = 100;
|
|
description = ''
|
|
The memory limit (max Java heap size) in megabytes.
|
|
Default: 100
|
|
'';
|
|
};
|
|
|
|
transcoders = lib.mkOption {
|
|
type = lib.types.listOf lib.types.path;
|
|
default = [ "${pkgs.ffmpeg.bin}/bin/ffmpeg" ];
|
|
defaultText = lib.literalExpression ''[ "''${pkgs.ffmpeg.bin}/bin/ffmpeg" ]'';
|
|
description = ''
|
|
List of paths to transcoder executables that should be accessible
|
|
from Airsonic. Symlinks will be created to each executable inside
|
|
''${config.${opt.home}}/transcoders.
|
|
'';
|
|
};
|
|
|
|
jre = lib.mkPackageOption pkgs "jre8" {
|
|
extraDescription = ''
|
|
::: {.note}
|
|
Airsonic only supports Java 8, airsonic-advanced requires at least
|
|
Java 11.
|
|
:::
|
|
'';
|
|
};
|
|
|
|
war = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "${pkgs.airsonic}/webapps/airsonic.war";
|
|
defaultText = lib.literalExpression ''"''${pkgs.airsonic}/webapps/airsonic.war"'';
|
|
description = "Airsonic war file to use.";
|
|
};
|
|
|
|
jvmOptions = lib.mkOption {
|
|
description = ''
|
|
Extra command line options for the JVM running AirSonic.
|
|
Useful for sending jukebox output to non-default alsa
|
|
devices.
|
|
'';
|
|
default = [
|
|
];
|
|
type = lib.types.listOf lib.types.str;
|
|
example = [
|
|
"-Djavax.sound.sampled.Clip='#CODEC [plughw:1,0]'"
|
|
"-Djavax.sound.sampled.Port='#Port CODEC [hw:1]'"
|
|
"-Djavax.sound.sampled.SourceDataLine='#CODEC [plughw:1,0]'"
|
|
"-Djavax.sound.sampled.TargetDataLine='#CODEC [plughw:1,0]'"
|
|
];
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
systemd.services.airsonic = {
|
|
description = "Airsonic Media Server";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
preStart = ''
|
|
# Install transcoders.
|
|
rm -rf ${cfg.home}/transcode
|
|
mkdir -p ${cfg.home}/transcode
|
|
for exe in ${toString cfg.transcoders}; do
|
|
ln -sf "$exe" ${cfg.home}/transcode
|
|
done
|
|
'';
|
|
serviceConfig = {
|
|
ExecStart = ''
|
|
${cfg.jre}/bin/java -Xmx${toString cfg.maxMemory}m \
|
|
-Dairsonic.home=${cfg.home} \
|
|
-Dserver.address=${cfg.listenAddress} \
|
|
-Dserver.port=${toString cfg.port} \
|
|
-Dserver.context-path=${cfg.contextPath} \
|
|
-Djava.awt.headless=true \
|
|
${lib.optionalString (cfg.virtualHost != null) "-Dserver.use-forward-headers=true"} \
|
|
${toString cfg.jvmOptions} \
|
|
-verbose:gc \
|
|
-jar ${cfg.war}
|
|
'';
|
|
Restart = "always";
|
|
User = "airsonic";
|
|
UMask = "0022";
|
|
};
|
|
};
|
|
|
|
services.nginx = lib.mkIf (cfg.virtualHost != null) {
|
|
enable = true;
|
|
recommendedProxySettings = true;
|
|
virtualHosts.${cfg.virtualHost} = {
|
|
locations.${cfg.contextPath}.proxyPass = "http://${cfg.listenAddress}:${toString cfg.port}";
|
|
};
|
|
};
|
|
|
|
users.users.airsonic = {
|
|
description = "Airsonic service user";
|
|
group = "airsonic";
|
|
name = cfg.user;
|
|
home = cfg.home;
|
|
createHome = true;
|
|
isSystemUser = true;
|
|
};
|
|
users.groups.airsonic = { };
|
|
};
|
|
}
|