nixpkgs/pkgs/servers/prowlarr/default.nix

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

75 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper, icu, dotnet-runtime, openssl, nixosTests, zlib }:
2021-10-10 18:49:50 +03:00
let
pname = "prowlarr";
unsupported = throw "Unsupported system ${stdenv.hostPlatform.system} for ${pname}";
2021-10-10 18:49:50 +03:00
os =
if stdenv.isDarwin then
"osx"
else if stdenv.isLinux then
"linux"
else
unsupported;
2021-10-10 18:49:50 +03:00
arch = {
aarch64-darwin = "arm64";
2021-10-10 18:49:50 +03:00
aarch64-linux = "arm64";
x86_64-darwin = "x64";
x86_64-linux = "x64";
}.${stdenv.hostPlatform.system} or unsupported;
2021-10-10 18:49:50 +03:00
hash = {
2024-07-07 21:32:35 +03:00
aarch64-darwin = "sha256-LmRF4hXVbjYj/4v4SKwBm5lRFUuHv11h3tmWo2vOskQ=";
aarch64-linux = "sha256-fj0E1lcCLJs4jQwQQBmbh6uts0axubhxDz7kn1Qzuk4=";
x86_64-darwin = "sha256-1P+R9MBaWsLYVST+WlyI7TH+1ZmB90J9P2IP2WVZEvE=";
x86_64-linux = "sha256-V0MNjLswcxtyU7kl7Gn5474SGSAfwUVHbJcsYVE4WfY=";
}.${stdenv.hostPlatform.system} or unsupported;
2021-10-10 18:49:50 +03:00
in stdenv.mkDerivation rec {
inherit pname;
2024-07-07 21:32:35 +03:00
version = "1.20.1.4603";
2021-10-10 18:49:50 +03:00
src = fetchurl {
url = "https://github.com/Prowlarr/Prowlarr/releases/download/v${version}/Prowlarr.master.${version}.${os}-core-${arch}.tar.gz";
inherit hash;
2021-10-10 18:49:50 +03:00
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,share/${pname}-${version}}
cp -r * $out/share/${pname}-${version}/.
makeWrapper "${dotnet-runtime}/bin/dotnet" $out/bin/Prowlarr \
2021-10-10 18:49:50 +03:00
--add-flags "$out/share/${pname}-${version}/Prowlarr.dll" \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
curl sqlite libmediainfo mono openssl icu zlib ]}
2021-10-10 18:49:50 +03:00
runHook postInstall
'';
passthru = {
updateScript = ./update.sh;
2021-10-10 18:54:22 +03:00
tests.smoke-test = nixosTests.prowlarr;
2021-10-10 18:49:50 +03:00
};
meta = with lib; {
description = "Indexer manager/proxy built on the popular arr .net/reactjs base stack";
homepage = "https://wiki.servarr.com/prowlarr";
changelog = "https://github.com/Prowlarr/Prowlarr/releases/tag/v${version}";
2021-10-10 18:49:50 +03:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ jdreaver ];
2023-07-14 16:38:57 +03:00
mainProgram = "Prowlarr";
platforms = [
"aarch64-darwin"
"aarch64-linux"
"x86_64-darwin"
"x86_64-linux"
];
2021-10-10 18:49:50 +03:00
};
}