summary refs log tree commit diff
path: root/pkgs/servers/jackett
diff options
context:
space:
mode:
authornyanloutre <paul@nyanlout.re>2019-09-13 17:37:51 +0200
committernyanloutre <paul@nyanlout.re>2019-09-13 18:03:15 +0200
commitd38121a871aaed25570408f22b9f472b1d1e99a3 (patch)
tree865bae4152c0c52ee0d57d2fc01d6965c9f0bb0f /pkgs/servers/jackett
parente19054ab3cd5b7cc9a01d0efc71c8fe310541065 (diff)
downloadnixpkgs-d38121a871aaed25570408f22b9f472b1d1e99a3.tar
nixpkgs-d38121a871aaed25570408f22b9f472b1d1e99a3.tar.gz
nixpkgs-d38121a871aaed25570408f22b9f472b1d1e99a3.tar.bz2
nixpkgs-d38121a871aaed25570408f22b9f472b1d1e99a3.tar.lz
nixpkgs-d38121a871aaed25570408f22b9f472b1d1e99a3.tar.xz
nixpkgs-d38121a871aaed25570408f22b9f472b1d1e99a3.tar.zst
nixpkgs-d38121a871aaed25570408f22b9f472b1d1e99a3.zip
jackett: 0.11.589 -> 0.11.687
Also migrate to standalone binary
Diffstat (limited to 'pkgs/servers/jackett')
-rw-r--r--pkgs/servers/jackett/default.nix30
1 files changed, 20 insertions, 10 deletions
diff --git a/pkgs/servers/jackett/default.nix b/pkgs/servers/jackett/default.nix
index 0299c028148..6aaae932906 100644
--- a/pkgs/servers/jackett/default.nix
+++ b/pkgs/servers/jackett/default.nix
@@ -1,30 +1,40 @@
-{ stdenv, fetchurl, mono, curl, makeWrapper }:
+{ lib, stdenv, fetchurl, makeWrapper, curl, icu60, openssl, zlib }:
 
 stdenv.mkDerivation rec {
   pname = "jackett";
-  version = "0.11.589";
+  version = "0.11.687";
 
   src = fetchurl {
-    url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz";
-    sha256 = "14lj33xmhf35pq781wvzyw983yff447mc253x0ppi3b5rwkrgkyz";
+    url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.LinuxAMDx64.tar.gz";
+    sha256 = "0wq6rc12dn5yxa6yyabv234xw5nrsbvlrpgfjppvw3i4vy2cfzh9";
   };
 
   buildInputs = [ makeWrapper ];
 
   installPhase = ''
-    mkdir -p $out/{bin,share/${pname}-${version}}
-    cp -r * $out/share/${pname}-${version}
+    mkdir -p $out/{bin,opt/${pname}-${version}}
+    cp -r * $out/opt/${pname}-${version}
 
-    makeWrapper "${mono}/bin/mono" $out/bin/Jackett \
-      --add-flags "$out/share/${pname}-${version}/JackettConsole.exe" \
-      --prefix LD_LIBRARY_PATH ':' "${curl.out}/lib"
+    makeWrapper "$out/opt/${pname}-${version}/jackett" $out/bin/Jackett \
+      --prefix LD_LIBRARY_PATH ':' "${curl.out}/lib:${icu60.out}/lib:${openssl.out}/lib:${zlib.out}/lib"
+  '';
+
+  preFixup = let
+    libPath = lib.makeLibraryPath [
+      stdenv.cc.cc.lib  # libstdc++.so.6
+    ];
+  in ''
+    patchelf \
+      --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
+      --set-rpath "${libPath}" \
+      $out/opt/${pname}-${version}/jackett
   '';
 
   meta = with stdenv.lib; {
     description = "API Support for your favorite torrent trackers.";
     homepage = https://github.com/Jackett/Jackett/;
     license = licenses.gpl2;
-    maintainers = with maintainers; [ edwtjo ];
+    maintainers = with maintainers; [ edwtjo nyanloutre ];
     platforms = platforms.all;
   };
 }