nixpkgs/pkgs/servers/nzbhydra2/default.nix

37 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2020-10-04 14:04:55 +00:00
{ lib, stdenv, fetchzip, makeWrapper, jre, python3, unzip }:
stdenv.mkDerivation rec {
pname = "nzbhydra2";
2021-06-21 12:55:42 +00:00
version = "3.14.2";
2020-10-04 14:04:55 +00:00
src = fetchzip {
url = "https://github.com/theotherp/${pname}/releases/download/v${version}/${pname}-${version}-linux.zip";
2021-06-21 12:55:42 +00:00
sha512 = "sha512-wC2GhCjkRt/rmLAhe6nDCdF4PsfBpOo0T4BOSdw4wlBr7eCfo4Cibt9VvK6DNLuDk7EGkUfxvw9HI9sbRJlpCw==";
2020-10-04 14:04:55 +00:00
stripRoot = false;
};
nativeBuildInputs = [ jre makeWrapper unzip ];
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;
maintainers = with maintainers; [ jamiemagee ];
platforms = with platforms; linux;
};
}