From a92c678c3f8a94eb892acf5cc3fd005fc86b92d6 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 14 Oct 2020 09:15:43 +0200 Subject: [PATCH 1/2] tremc: 0.9.1 -> 0.9.2 --- pkgs/applications/networking/p2p/tremc/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/p2p/tremc/default.nix b/pkgs/applications/networking/p2p/tremc/default.nix index 37f2a3584ee..0cb8b228e26 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; [ From c3e6fbe81e9c5bf3b3cad5a7d4ad6d71914215dd Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 14 Oct 2020 09:28:34 +0200 Subject: [PATCH 2/2] tremc: set license to GPL 3+ --- pkgs/applications/networking/p2p/tremc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/p2p/tremc/default.nix b/pkgs/applications/networking/p2p/tremc/default.nix index 0cb8b228e26..485366afe93 100644 --- a/pkgs/applications/networking/p2p/tremc/default.nix +++ b/pkgs/applications/networking/p2p/tremc/default.nix @@ -44,6 +44,6 @@ python3Packages.buildPythonApplication rec { meta = with stdenv.lib; { description = "Curses interface for transmission"; homepage = "https://github.com/tremc/tremc"; - license = licenses.gpl3; + license = licenses.gpl3Plus; }; }