summary refs log tree commit diff
path: root/pkgs/servers/nzbhydra2
diff options
context:
space:
mode:
authorJamie Magee <jamie.magee@gmail.com>2020-10-04 16:04:55 +0200
committerJamie Magee <jamie.magee@gmail.com>2020-12-21 19:41:22 +0100
commit6876b8b8d7d4271930144abf89ec6cfc1c28f2f6 (patch)
tree3b9c29cb7dbb5b5c53c8db204dd9d74efba16fb2 /pkgs/servers/nzbhydra2
parentee383a53dd951f46a7c31856817e8fddf712caed (diff)
downloadnixpkgs-6876b8b8d7d4271930144abf89ec6cfc1c28f2f6.tar
nixpkgs-6876b8b8d7d4271930144abf89ec6cfc1c28f2f6.tar.gz
nixpkgs-6876b8b8d7d4271930144abf89ec6cfc1c28f2f6.tar.bz2
nixpkgs-6876b8b8d7d4271930144abf89ec6cfc1c28f2f6.tar.lz
nixpkgs-6876b8b8d7d4271930144abf89ec6cfc1c28f2f6.tar.xz
nixpkgs-6876b8b8d7d4271930144abf89ec6cfc1c28f2f6.tar.zst
nixpkgs-6876b8b8d7d4271930144abf89ec6cfc1c28f2f6.zip
nzbhydra2: init at 3.8.0
Diffstat (limited to 'pkgs/servers/nzbhydra2')
-rw-r--r--pkgs/servers/nzbhydra2/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/servers/nzbhydra2/default.nix b/pkgs/servers/nzbhydra2/default.nix
new file mode 100644
index 00000000000..3ba758c1088
--- /dev/null
+++ b/pkgs/servers/nzbhydra2/default.nix
@@ -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;
+  };
+}