nixpkgs/pkgs/servers/nzbhydra2/default.nix

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

44 lines
1.1 KiB
Nix
Raw Normal View History

2023-01-01 01:01:17 +00:00
{
lib,
stdenv,
fetchzip,
makeWrapper,
jre,
python3,
unzip,
}:
2020-10-04 14:04:55 +00:00
stdenv.mkDerivation rec {
pname = "nzbhydra2";
2023-01-01 01:01:17 +00:00
version = "4.7.6";
2020-10-04 14:04:55 +00:00
src = fetchzip {
url = "https://github.com/theotherp/${pname}/releases/download/v${version}/${pname}-${version}-linux.zip";
2023-01-01 01:01:17 +00:00
hash = "sha512-vc+VInEnh00bASxcEwSjJcsa0QJHmtRzSz30uW60wGmA24tlaJYSk42N5KpGFbkQkOkb2ijHmKGxPogSa4izRQ==";
2020-10-04 14:04:55 +00:00
stripRoot = false;
};
2023-01-01 01:01:17 +00:00
nativeBuildInputs = [jre makeWrapper unzip];
2020-10-04 14:04:55 +00:00
installPhase = ''
2021-05-19 03:50:20 +00:00
runHook preInstall
2020-10-04 14:04:55 +00:00
install -d -m 755 "$out/lib/${pname}"
cp -dpr --no-preserve=ownership "lib" "readme.md" "$out/lib/nzbhydra2"
install -D -m 755 "nzbhydra2wrapperPy3.py" "$out/lib/nzbhydra2/nzbhydra2wrapperPy3.py"
makeWrapper ${python3}/bin/python $out/bin/nzbhydra2 \
--add-flags "$out/lib/nzbhydra2/nzbhydra2wrapperPy3.py" \
--prefix PATH ":" ${jre}/bin
2021-05-19 03:50:20 +00:00
runHook postInstall
2020-10-04 14:04:55 +00:00
'';
meta = with lib; {
2020-10-04 14:04:55 +00:00
description = "Usenet meta search";
homepage = "https://github.com/theotherp/nzbhydra2";
license = licenses.asl20;
2023-01-01 01:01:17 +00:00
maintainers = with maintainers; [jamiemagee];
2020-10-04 14:04:55 +00:00
platforms = with platforms; linux;
};
}