From 7fa6a964053a4e2dfca2bddc98e7c844f37c903e Mon Sep 17 00:00:00 2001 From: kashw2 Date: Fri, 1 Sep 2023 11:00:04 +1000 Subject: [PATCH] tremc: 0.9.2 -> 0.9.3 --- pkgs/applications/networking/p2p/tremc/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/p2p/tremc/default.nix b/pkgs/applications/networking/p2p/tremc/default.nix index 016ff2aa5e00..48e6a76c29a5 100644 --- a/pkgs/applications/networking/p2p/tremc/default.nix +++ b/pkgs/applications/networking/p2p/tremc/default.nix @@ -12,22 +12,22 @@ let in python3Packages.buildPythonApplication rec { pname = "tremc"; - version = "0.9.2"; + version = "0.9.3"; format = "other"; src = fetchFromGitHub { owner = "tremc"; repo = pname; rev = version; - sha256 = "1fqspp2ckafplahgba54xmx0sjidx1pdzyjaqjhz0ivh98dkx2n5"; + hash = "sha256-219rntmetmj1JFG+4NyYMFTWmrHKJL7fnLoMIvnTP4Y="; }; patches = [ - # Remove when version >0.9.2 is released + # Remove when tremc > 0.9.3 is released (fetchpatch { - url = "https://github.com/tremc/tremc/commit/bdffff2bd76186a4e3488b83f719fc7f7e3362b6.patch"; - sha256 = "1zip2skh22v0yyv2hmszxn5jshp9m1jpw0fsyfvmqfxzq7m3czy5"; - name = "replace-decodestring-with-decodebytes.patch"; + url = "https://github.com/tremc/tremc/commit/a8aaf9a6728a9ef3d8f13b3603456b0086122891.patch"; + hash = "sha256-+HYdWTbcpvZqjshdHLZ+Svmr6U/aKFc3sy0aka6rn/A="; + name = "support-transmission-4.patch"; }) ]; @@ -56,5 +56,6 @@ python3Packages.buildPythonApplication rec { description = "Curses interface for transmission"; homepage = "https://github.com/tremc/tremc"; license = licenses.gpl3Plus; + maintainers = with maintainers; [ kashw2 ]; }; }