mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos.roon-bridge: init
This commit is contained in:
parent
2bac6a445e
commit
c8f95fd174
2 changed files with 81 additions and 7 deletions
74
nixos/modules/services/audio/roon-bridge.nix
Normal file
74
nixos/modules/services/audio/roon-bridge.nix
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
name = "roon-bridge";
|
||||||
|
cfg = config.services.roon-bridge;
|
||||||
|
in {
|
||||||
|
options = {
|
||||||
|
services.roon-bridge = {
|
||||||
|
enable = mkEnableOption "Roon Bridge";
|
||||||
|
openFirewall = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Open ports in the firewall for the bridge.
|
||||||
|
|
||||||
|
UDP: 9003
|
||||||
|
TCP: 9100 - 9200
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "roon-bridge";
|
||||||
|
description = ''
|
||||||
|
User to run the Roon bridge as.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
group = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "roon-bridge";
|
||||||
|
description = ''
|
||||||
|
Group to run the Roon Bridge as.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
systemd.services.roon-bridge = {
|
||||||
|
after = [ "network.target" ];
|
||||||
|
description = "Roon Bridge";
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
environment.ROON_DATAROOT = "/var/lib/${name}";
|
||||||
|
|
||||||
|
serviceConfig = {
|
||||||
|
ExecStart = "${pkgs.roon-bridge}/start.sh";
|
||||||
|
LimitNOFILE = 8192;
|
||||||
|
User = cfg.user;
|
||||||
|
Group = cfg.group;
|
||||||
|
StateDirectory = name;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.firewall = mkIf cfg.openFirewall {
|
||||||
|
allowedTCPPortRanges = [
|
||||||
|
{ from = 9100; to = 9200; }
|
||||||
|
];
|
||||||
|
allowedUDPPorts = [ 9003 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
users.groups.${cfg.group} = {};
|
||||||
|
users.users.${cfg.user} =
|
||||||
|
if cfg.user == "roon-bridge" then {
|
||||||
|
isSystemUser = true;
|
||||||
|
description = "Roon Bridge user";
|
||||||
|
group = cfg.group;
|
||||||
|
extraGroups = [ "audio" ];
|
||||||
|
}
|
||||||
|
else {};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
{ alsaLib
|
{ alsa-lib
|
||||||
, alsaUtils
|
, alsa-utils
|
||||||
, autoPatchelfHook
|
, autoPatchelfHook
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, lib
|
, lib
|
||||||
|
@ -10,20 +10,20 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "roon-bridge";
|
pname = "roon-bridge";
|
||||||
version = "100800753";
|
version = "1.8-795";
|
||||||
|
|
||||||
# N.B. The URL is unstable. I've asked for them to provide a stable URL but
|
# N.B. The URL is unstable. I've asked for them to provide a stable URL but
|
||||||
# they have ignored me. If this package fails to build for you, you may need
|
# they have ignored me. If this package fails to build for you, you may need
|
||||||
# to update the version and sha256.
|
# to update the version and sha256.
|
||||||
# c.f. https://community.roonlabs.com/t/latest-roon-server-is-not-available-for-download-on-nixos/118129
|
# c.f. https://community.roonlabs.com/t/latest-roon-server-is-not-available-for-download-on-nixos/118129
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://web.archive.org/web/20201221152142/http://download.roonlabs.com/builds/RoonBridge_linuxx64.tar.bz2";
|
url = "https://web.archive.org/web/20210610172810/http://download.roonlabs.com/builds/RoonBridge_linuxx64.tar.bz2";
|
||||||
sha256 = "sha256-ahdy0/TBOyMfCt4VTkcDTZGAFmwQJT2KvZuMtFcAY3w=";
|
sha256 = "sha256-ahdy0/TBOyMfCt4VTkcDTZGAFmwQJT2KvZuMtFcAY3w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
alsaLib
|
alsa-lib
|
||||||
alsaUtils
|
alsa-utils
|
||||||
zlib
|
zlib
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
||||||
ln -sf $out/RoonMono/bin/mono-sgen $out/RoonMono/bin/${builtins.baseNameOf bin}
|
ln -sf $out/RoonMono/bin/mono-sgen $out/RoonMono/bin/${builtins.baseNameOf bin}
|
||||||
'';
|
'';
|
||||||
wrapFix = bin: ''
|
wrapFix = bin: ''
|
||||||
wrapProgram ${bin} --prefix PATH : ${lib.makeBinPath [ alsaUtils ]}
|
wrapProgram ${bin} --prefix PATH : ${lib.makeBinPath [ alsa-utils ]}
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
''
|
''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue