chore: goodbye custom jackett

This commit is contained in:
Julien Malka 2024-11-30 20:45:51 +01:00
parent 2c09b2e235
commit 3cc6ebdd52
Signed by: Luj
GPG key ID: 6FC74C847011FD83
3 changed files with 0 additions and 1461 deletions

View file

@ -50,7 +50,6 @@ import "${nixpkgs}/nixos/lib/eval-config.nix" {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});
# Packages comming from other repositories
jackett = pkgs.callPackage ../packages/jackett { };
lila-build-hook = (import inputs.lila).packages.${system}.utils;
statelessUptimeKuma =
pkgs.callPackage "${inputs.stateless-uptime-kuma}/stateless-uptime-kuma.nix"

View file

@ -1,52 +0,0 @@
{
lib,
stdenv,
buildDotnetModule,
fetchFromGitHub,
dotnetCorePackages,
openssl,
mono,
}:
buildDotnetModule rec {
pname = "jackett";
version = "0.21.2688";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha512-ofKCk1vWPbn3dFQ8qt7ieTXzkyFUoRGWsKGLpBZGEduX71aGX1M8wri27nt27FShb1Q7gVbGqUq6RHQI4bwnlQ==";
};
projectFile = "src/Jackett.Server/Jackett.Server.csproj";
nugetDeps = ./deps.nix;
dotnet-runtime = dotnetCorePackages.aspnetcore_6_0;
dotnetInstallFlags = [ "-p:TargetFramework=net6.0" ];
runtimeDeps = [ openssl ];
doCheck = !(stdenv.isDarwin && stdenv.isAarch64); # mono is not available on aarch64-darwin
nativeCheckInputs = [ mono ];
testProjectFile = "src/Jackett.Test/Jackett.Test.csproj";
postFixup = ''
# For compatibility
ln -s $out/bin/jackett $out/bin/Jackett || :
ln -s $out/bin/Jackett $out/bin/jackett || :
'';
meta = with lib; {
description = "API Support for your favorite torrent trackers";
homepage = "https://github.com/Jackett/Jackett/";
changelog = "https://github.com/Jackett/Jackett/releases/tag/v${version}";
license = licenses.gpl2Only;
maintainers = with maintainers; [
edwtjo
nyanloutre
purcell
];
};
}

File diff suppressed because it is too large Load diff