nixpkgs/pkgs/servers/radarr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper, icu, dotnet-runtime, openssl, nixosTests, zlib }:
let
os = if stdenv.isDarwin then "osx" else "linux";
arch = {
x86_64-linux = "x64";
aarch64-linux = "arm64";
x86_64-darwin = "x64";
}."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
hash = {
2023-01-06 14:30:41 +03:00
x64-linux_hash = "sha256-7OZoHvDJIBXogUPHdKphiajtCBOOouSPe/pgZF30tS8=";
arm64-linux_hash = "sha256-OqTiriXOwU68kRAA1U+HZLy062Atykld5aow56Ec03s=";
x64-osx_hash = "sha256-dydjoRMPsb+H/nr0ZPUlv/Yec+Brz76DaJfUHvfLGfI=";
}."${arch}-${os}_hash";
in stdenv.mkDerivation rec {
pname = "radarr";
2023-01-06 14:30:41 +03:00
version = "4.3.2.6857";
src = fetchurl {
url = "https://github.com/Radarr/Radarr/releases/download/v${version}/Radarr.master.${version}.${os}-core-${arch}.tar.gz";
sha256 = hash;
};
2018-12-14 15:22:30 +03:00
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
2021-06-21 15:57:13 +03:00
runHook preInstall
mkdir -p $out/{bin,share/${pname}-${version}}
cp -r * $out/share/${pname}-${version}/.
makeWrapper "${dotnet-runtime}/bin/dotnet" $out/bin/Radarr \
--add-flags "$out/share/${pname}-${version}/Radarr.dll" \
2021-01-15 10:07:56 +03:00
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
curl sqlite libmediainfo mono openssl icu zlib ]}
2021-06-21 15:57:13 +03:00
runHook postInstall
'';
passthru = {
updateScript = ./update.sh;
tests.smoke-test = nixosTests.radarr;
};
meta = with lib; {
2018-12-14 15:22:30 +03:00
description = "A Usenet/BitTorrent movie downloader";
2020-03-03 18:04:32 +03:00
homepage = "https://radarr.video/";
2023-02-22 01:19:19 +03:00
changelog = "https://github.com/Radarr/Radarr/releases/tag/v${version}";
license = licenses.gpl3Only;
2020-08-26 06:35:47 +03:00
maintainers = with maintainers; [ edwtjo purcell ];
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
};
}