about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorMichele Guerini Rocco <rnhmjoj@users.noreply.github.com>2020-10-14 17:06:24 +0200
committerGitHub <noreply@github.com>2020-10-14 17:06:24 +0200
commitb5e44d3d15634bbc6bb47c6ce518be06a59fb39f (patch)
treeb8ca545badc0ecbc08a791cc50e5f9e0f2633fb6 /pkgs/applications/networking/p2p
parent625a48c633bbbdc8a8e293be135684acb6681cc9 (diff)
parentc3e6fbe81e9c5bf3b3cad5a7d4ad6d71914215dd (diff)
Merge pull request #100479 from rnhmjoj/tremc
tremc: 0.9.1 -> 0.9.2
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/tremc/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/p2p/tremc/default.nix b/pkgs/applications/networking/p2p/tremc/default.nix
index 37f2a3584ee24..485366afe939a 100644
--- a/pkgs/applications/networking/p2p/tremc/default.nix
+++ b/pkgs/applications/networking/p2p/tremc/default.nix
@@ -10,15 +10,15 @@ let
     optional stdenv.isDarwin pbcopy
   );
 in
-python3Packages.buildPythonPackage rec {
-  version = "0.9.1";
+python3Packages.buildPythonApplication rec {
   pname = "tremc";
+  version = "0.9.2";
 
   src = fetchFromGitHub {
     owner = "tremc";
     repo = pname;
-    rev = "0.9.1";
-    sha256 = "1yhwvlcyv1s830p5a7q5x3mkb3mbvr5cn5nh7y62l5b6iyyynlvm";
+    rev = version;
+    sha256 = "1fqspp2ckafplahgba54xmx0sjidx1pdzyjaqjhz0ivh98dkx2n5";
   };
 
   buildInputs = with python3Packages; [
@@ -44,6 +44,6 @@ python3Packages.buildPythonPackage rec {
   meta = with stdenv.lib; {
     description = "Curses interface for transmission";
     homepage = "https://github.com/tremc/tremc";
-    license = licenses.gpl3;
+    license = licenses.gpl3Plus;
   };
 }