aboutsummaryrefslogtreecommitdiff
path: root/modules/tlmp/sonarr.nix
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2024-02-07 14:46:29 +0000
committerMax Audron <audron@cocaine.farm>2024-02-07 17:27:40 +0000
commit44ee565dfcf908df660751351d00caeb2ba39bc8 (patch)
tree43a11284abc04d0657901f56e579dd86166814da /modules/tlmp/sonarr.nix
parentupdate authentik (diff)
migrate tlmp setup to nixos
Diffstat (limited to 'modules/tlmp/sonarr.nix')
-rw-r--r--modules/tlmp/sonarr.nix57
1 files changed, 57 insertions, 0 deletions
diff --git a/modules/tlmp/sonarr.nix b/modules/tlmp/sonarr.nix
new file mode 100644
index 0000000..cf56476
--- /dev/null
+++ b/modules/tlmp/sonarr.nix
@@ -0,0 +1,57 @@
+{ lib, stdenv, fetchurl, dotnet-runtime, icu, ffmpeg, openssl, sqlite, curl, makeWrapper, nixosTests }:
+
+let
+ os = if stdenv.isDarwin then "osx" else "linux";
+ arch = {
+ x86_64-linux = "x64";
+ aarch64-linux = "arm64";
+ x86_64-darwin = "x64";
+ aarch64-darwin = "arm64";
+ }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
+
+ hash = {
+ x64-linux_hash = "sha256-9YNhyhxnnn2CesXLJH5Cs7yB9w23YUAZPrk9vEHvevk=";
+ arm64-linux_hash = "sha256-RBCyfozmBpWrmsfMcdb1BqcBXj64CMDrgpMZTzj85ZQ=";
+ x64-osx_hash = "sha256-+AKENBZohBUEKQEM3L69EzC84MhCX3fGvsNFn5p2v84=";
+ arm64-osx_hash = "sha256-Arx8usecAN+d0NGL7Hv+rB4GG7p/KLAaqpJFgNg7C2Y=";
+ }."${arch}-${os}_hash";
+in
+stdenv.mkDerivation rec {
+ pname = "sonarr";
+ version = "4.0.1.929";
+
+ src = fetchurl {
+ url = "https://github.com/Sonarr/Sonarr/releases/download/v${version}/Sonarr.main.${version}.${os}-${arch}.tar.gz";
+ inherit hash;
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/{bin,share/sonarr-${version}}
+ cp -r * $out/share/sonarr-${version}/.
+
+ makeWrapper "${dotnet-runtime}/bin/dotnet" $out/bin/NzbDrone \
+ --add-flags "$out/share/sonarr-${version}/Sonarr.dll" \
+ --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} \
+ --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ curl sqlite openssl icu ]}
+
+ runHook postInstall
+ '';
+
+ passthru = {
+ updateScript = ./update.sh;
+ tests.smoke-test = nixosTests.sonarr;
+ };
+
+ meta = {
+ description = "Smart PVR for newsgroup and bittorrent users";
+ homepage = "https://sonarr.tv/";
+ license = lib.licenses.gpl3Only;
+ maintainers = with lib.maintainers; [ fadenb purcell ];
+ mainProgram = "NzbDrone";
+ platforms = lib.platforms.all;
+ };
+}