2022-04-08 19:26:06 +00:00
|
|
|
{ lib, stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper, icu, dotnet-runtime, openssl, nixosTests, zlib }:
|
2017-03-25 20:18:34 +00:00
|
|
|
|
2021-03-24 08:18:33 +00:00
|
|
|
let
|
|
|
|
os = if stdenv.isDarwin then "osx" else "linux";
|
|
|
|
arch = {
|
|
|
|
x86_64-linux = "x64";
|
|
|
|
aarch64-linux = "arm64";
|
|
|
|
x86_64-darwin = "x64";
|
2023-08-29 18:52:57 +00:00
|
|
|
aarch64-darwin = "arm64";
|
2021-03-24 08:18:33 +00:00
|
|
|
}."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
|
|
|
|
hash = {
|
2023-12-29 15:39:36 +00:00
|
|
|
x64-linux_hash = "sha256-RXvpKTIXDOcPUyRa07+8N4xkav23t8aWAshhPEK5pCI=";
|
|
|
|
arm64-linux_hash = "sha256-zAwlyW6uU+3/XQk2HxA/ClvF/EozxMnlH/6C2cx99bU=";
|
|
|
|
x64-osx_hash = "sha256-j7cvUyDMxf+9ry9pMSO+xfjBgoqeOhda3pnzHA2RDw4=";
|
|
|
|
arm64-osx_hash = "sha256-v8SuAWlyBT7bIFRkQDJ5E2y7uxckfdW5cCG/nJ+27cg=";
|
2021-03-24 08:18:33 +00:00
|
|
|
}."${arch}-${os}_hash";
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "radarr";
|
2023-12-29 15:39:36 +00:00
|
|
|
version = "5.2.6.8376";
|
2017-03-25 20:18:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-24 08:18:33 +00:00
|
|
|
url = "https://github.com/Radarr/Radarr/releases/download/v${version}/Radarr.master.${version}.${os}-core-${arch}.tar.gz";
|
|
|
|
sha256 = hash;
|
2017-03-25 20:18:34 +00:00
|
|
|
};
|
|
|
|
|
2018-12-14 12:22:30 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2017-03-25 20:18:34 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2021-06-21 12:57:13 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2019-08-15 12:41:18 +00:00
|
|
|
mkdir -p $out/{bin,share/${pname}-${version}}
|
|
|
|
cp -r * $out/share/${pname}-${version}/.
|
2017-03-25 20:18:34 +00:00
|
|
|
|
2022-04-08 19:26:06 +00:00
|
|
|
makeWrapper "${dotnet-runtime}/bin/dotnet" $out/bin/Radarr \
|
2021-03-24 08:18:33 +00:00
|
|
|
--add-flags "$out/share/${pname}-${version}/Radarr.dll" \
|
2021-01-15 07:07:56 +00:00
|
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
|
2022-04-08 19:26:06 +00:00
|
|
|
curl sqlite libmediainfo mono openssl icu zlib ]}
|
2021-06-21 12:57:13 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2017-03-25 20:18:34 +00:00
|
|
|
'';
|
|
|
|
|
2021-03-24 08:18:33 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = ./update.sh;
|
|
|
|
tests.smoke-test = nixosTests.radarr;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-12-14 12:22:30 +00:00
|
|
|
description = "A Usenet/BitTorrent movie downloader";
|
2020-03-03 15:04:32 +00:00
|
|
|
homepage = "https://radarr.video/";
|
2023-02-21 22:19:19 +00:00
|
|
|
changelog = "https://github.com/Radarr/Radarr/releases/tag/v${version}";
|
2021-03-24 08:18:33 +00:00
|
|
|
license = licenses.gpl3Only;
|
2020-08-26 03:35:47 +00:00
|
|
|
maintainers = with maintainers; [ edwtjo purcell ];
|
2023-11-09 14:32:55 +00:00
|
|
|
mainProgram = "Radarr";
|
2023-08-29 18:52:57 +00:00
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
2017-03-25 20:18:34 +00:00
|
|
|
};
|
|
|
|
}
|