nzbhydra2: init at 3.8.0
This commit is contained in:
parent
ee383a53dd
commit
6876b8b8d7
32
pkgs/servers/nzbhydra2/default.nix
Normal file
32
pkgs/servers/nzbhydra2/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib, stdenv, fetchzip, makeWrapper, jre, python3, unzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "nzbhydra2";
|
||||||
|
version = "3.8.0";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "https://github.com/theotherp/${pname}/releases/download/v${version}/${pname}-${version}-linux.zip";
|
||||||
|
sha512 = "1gybricq26hixr5cmw1iwyax7h17d0n5wqzhrx727xda1x35jfjp5ynjdkxzysbfhs1za6vy54bpm0sda4nkrh16p0xqnz3nsd4hvzh";
|
||||||
|
stripRoot = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ jre makeWrapper unzip ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Usenet meta search";
|
||||||
|
homepage = "https://github.com/theotherp/nzbhydra2";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ jamiemagee ];
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
@ -6177,6 +6177,8 @@ in
|
|||||||
|
|
||||||
nzbget = callPackage ../tools/networking/nzbget { };
|
nzbget = callPackage ../tools/networking/nzbget { };
|
||||||
|
|
||||||
|
nzbhydra2 = callPackage ../servers/nzbhydra2 { };
|
||||||
|
|
||||||
oathToolkit = callPackage ../tools/security/oath-toolkit { };
|
oathToolkit = callPackage ../tools/security/oath-toolkit { };
|
||||||
|
|
||||||
obex_data_server = callPackage ../tools/bluetooth/obex-data-server { };
|
obex_data_server = callPackage ../tools/bluetooth/obex-data-server { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user