jackett 0.20.3846 -> 0.20.3927 https://github.com/jackett/jackett/releases attrpath: jackett Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/piadbh9n63gdcxzxvjmypdiabmwgn4kn-packages.json.drv building '/nix/store/piadbh9n63gdcxzxvjmypdiabmwgn4kn-packages.json.drv'... Going to be running update for following packages: - jackett-0.20.3846 Press Enter key to continue... Running update for: - jackett-0.20.3846: UPDATING ... - jackett-0.20.3846: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/servers/jackett/default.nix b/pkgs/servers/jackett/default.nix index 0407a59c99f..e845e1fe373 100644 --- a/pkgs/servers/jackett/default.nix +++ b/pkgs/servers/jackett/default.nix @@ -9,13 +9,13 @@ buildDotnetModule rec { pname = "jackett"; - version = "0.20.3846"; + version = "0.20.3949"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - hash = "sha512-RlEFX2XOFBNAtWiIUH6Gx00ApE5dqVFqeBtZ6umQVnaNga00K3KwQL+YroYgSZYUtLxZ73zpBFDqAD3ev6D+Gw=="; + hash = "sha512-tibEANLg64gf+bcI9Na0i3bHnE+KiNBe8CcHS7kMR7oV5HIiKwXwBSxts8/pZbDVWGhR1zfSmj4jtE8a1oFR/g=="; }; projectFile = "src/Jackett.Server/Jackett.Server.csproj"; No auto update branch exists Old version 0.20.3846" not present in master derivation file with contents: { lib , stdenv , buildDotnetModule , fetchFromGitHub , dotnetCorePackages , openssl , mono }: buildDotnetModule rec { pname = "jackett"; version = "0.20.3920"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; hash = "sha512-SSWohyMYnaGpOa5IipUalZPsOTHV00XSY5g70LiaW/8CPCKHjM+IydVm2S2pH7x+fmnqA4P4GvfCT1O67NsrIg=="; }; 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 || : ''; passthru.updateScript = ./updater.sh; 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 ]; }; }