summary refs log tree commit diff
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2016-06-12 19:12:07 +0300
committerGitHub <noreply@github.com>2016-06-12 19:12:07 +0300
commiteda1d52651cbf7460b12e178dd22bd022327f51c (patch)
treea2c270e681272700ab2819c025e61a1cd61f1274
parent6008d11fbbf738c9b80b24998e7d20c2b869acf4 (diff)
parent20f0c66fe4fb0251e53a6d71e82231596d8b8b8a (diff)
downloadnixlib-eda1d52651cbf7460b12e178dd22bd022327f51c.tar
nixlib-eda1d52651cbf7460b12e178dd22bd022327f51c.tar.gz
nixlib-eda1d52651cbf7460b12e178dd22bd022327f51c.tar.bz2
nixlib-eda1d52651cbf7460b12e178dd22bd022327f51c.tar.lz
nixlib-eda1d52651cbf7460b12e178dd22bd022327f51c.tar.xz
nixlib-eda1d52651cbf7460b12e178dd22bd022327f51c.tar.zst
nixlib-eda1d52651cbf7460b12e178dd22bd022327f51c.zip
Merge pull request #16178 from devhell/canto
canto-{curses,daemon}: 0.9.{6,5} -> 0.9.{7,6}
-rw-r--r--pkgs/applications/networking/feedreaders/canto-curses/default.nix4
-rw-r--r--pkgs/applications/networking/feedreaders/canto-daemon/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/feedreaders/canto-curses/default.nix b/pkgs/applications/networking/feedreaders/canto-curses/default.nix
index 37736d6edd78..3db20d3de4c1 100644
--- a/pkgs/applications/networking/feedreaders/canto-curses/default.nix
+++ b/pkgs/applications/networking/feedreaders/canto-curses/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, python34Packages, readline, ncurses, canto-daemon }:
 
 python34Packages.buildPythonApplication rec {
-  version = "0.9.6";
+  version = "0.9.7";
   name = "canto-curses-${version}";
 
   src = fetchFromGitHub {
     owner = "themoken";
     repo = "canto-curses";
     rev = "v${version}";
-    sha256 = "0hxzpx314cflxq68gswjf2vrqf1z1ci9mxhxgwrk7sa6di86ygy0";
+    sha256 = "0ap1b4m5gbzi0l7vj6pwvvg77i2aarbynbdc147z2b1lzvr985zq";
   };
 
   buildInputs = [ readline ncurses canto-daemon ];
diff --git a/pkgs/applications/networking/feedreaders/canto-daemon/default.nix b/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
index b6f0ff19dc33..18837299e93e 100644
--- a/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
+++ b/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchFromGitHub, python34Packages, }:
 
 python34Packages.buildPythonApplication rec {
-  version = "0.9.5";
+  version = "0.9.6";
   name = "canto-daemon-${version}";
   namePrefix = "";
 
@@ -9,7 +9,7 @@ python34Packages.buildPythonApplication rec {
     owner = "themoken";
     repo = "canto-next";
     rev = "v${version}";
-    sha256 = "1ycwrg5n2il833mdxgzz07r0vb4rxz89rk5c6l9g5x33ifinykdq";
+    sha256 = "0ibakwmsbpk10bvxsr5vvka0pks89arric428y5cmfgcpr72sqzw";
   };
 
   propagatedBuildInputs = with python34Packages; [ feedparser ];