Merge pull request #94839 from purcell/jackett-0.16.962-mono
jackett: 0.16.175 -> 0.16.998, switch to Mono, adding Darwin support
This commit is contained in:
commit
884d15ab9c
@ -1,39 +1,23 @@
|
||||
{ lib, stdenv, fetchurl, makeWrapper, curl, icu60, openssl, zlib }:
|
||||
{ lib, stdenv, fetchurl, mono, makeWrapper, curl, icu60, openssl, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "jackett";
|
||||
version = "0.16.175";
|
||||
version = "0.16.998";
|
||||
|
||||
src = {
|
||||
x86_64-linux = fetchurl {
|
||||
url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.LinuxAMDx64.tar.gz";
|
||||
sha512 = "269n84qc8sfrmnidgrjywanbqr65mhkmk24dlqfi17pi0l27wi4fc4qmnjj683xwprz5hqjsmkqf963pbx4k3jaz0rp0jnizan91wij";
|
||||
};
|
||||
aarch64-linux = fetchurl {
|
||||
url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.LinuxARM64.tar.gz";
|
||||
sha512 = "0dmyhprd2vi2z9q5g79psqgsc3w0zdac4s6k20rngi8jxm5jgphzrzcic4rgdijyryap99my619k447w701a08vh9sfcfk0fjg9pgwb";
|
||||
};
|
||||
}."${stdenv.targetPlatform.system}" or (throw "Missing hash for host system: ${stdenv.targetPlatform.system}");
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz";
|
||||
sha256 = "16f8ipw4sbdxwv79zjhr5ihd3m6biyhj1gj7cqpjr34ad7zqna3c";
|
||||
};
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/{bin,opt/${pname}-${version}}
|
||||
cp -r * $out/opt/${pname}-${version}
|
||||
mkdir -p $out/{bin,share/${pname}-${version}}
|
||||
cp -r * $out/share/${pname}-${version}
|
||||
|
||||
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
|
||||
makeWrapper "${mono}/bin/mono" $out/bin/Jackett \
|
||||
--add-flags "$out/share/${pname}-${version}/JackettConsole.exe" \
|
||||
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ curl icu60 openssl zlib ]}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
@ -41,6 +25,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/Jackett/Jackett/";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ edwtjo nyanloutre ];
|
||||
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user