about summary refs log tree commit diff
diff options
context:
space:
mode:
authorkashw2 <supra4keanu@hotmail.com>2023-09-01 11:00:04 +1000
committerkashw2 <supra4keanu@hotmail.com>2023-09-01 11:00:14 +1000
commit7fa6a964053a4e2dfca2bddc98e7c844f37c903e (patch)
tree03bc28ef91983f21852e4fbdd40b35984a8ff6ba
parent5f287352830578a8ec7ef154afb1a3be2a3a8937 (diff)
tremc: 0.9.2 -> 0.9.3
-rw-r--r--pkgs/applications/networking/p2p/tremc/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/networking/p2p/tremc/default.nix b/pkgs/applications/networking/p2p/tremc/default.nix
index 016ff2aa5e00d..48e6a76c29a52 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 ];
   };
 }