summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorlethalman <lucabru@src.gnome.org>2015-02-10 10:34:11 +0100
committerlethalman <lucabru@src.gnome.org>2015-02-10 10:34:11 +0100
commit7614b2f9848345a5b3fef361867af6c3d1a760de (patch)
tree57aed7f09a12d253ebcf787e92d915666917fefd /pkgs/applications/networking
parentd06122c58dad4f964417efe61c4071b2e2468785 (diff)
parenta9ac564f5000de9e7bf639378efd0b429857a4ea (diff)
downloadnixlib-7614b2f9848345a5b3fef361867af6c3d1a760de.tar
nixlib-7614b2f9848345a5b3fef361867af6c3d1a760de.tar.gz
nixlib-7614b2f9848345a5b3fef361867af6c3d1a760de.tar.bz2
nixlib-7614b2f9848345a5b3fef361867af6c3d1a760de.tar.lz
nixlib-7614b2f9848345a5b3fef361867af6c3d1a760de.tar.xz
nixlib-7614b2f9848345a5b3fef361867af6c3d1a760de.tar.zst
nixlib-7614b2f9848345a5b3fef361867af6c3d1a760de.zip
Merge pull request #6229 from devhell/canto
canto-{curses,daemon}: Add packages
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/feedreaders/canto-curses/default.nix32
-rw-r--r--pkgs/applications/networking/feedreaders/canto-daemon/default.nix32
2 files changed, 64 insertions, 0 deletions
diff --git a/pkgs/applications/networking/feedreaders/canto-curses/default.nix b/pkgs/applications/networking/feedreaders/canto-curses/default.nix
new file mode 100644
index 000000000000..ae4746a3f1eb
--- /dev/null
+++ b/pkgs/applications/networking/feedreaders/canto-curses/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, python34Packages, readline, ncurses, canto-daemon }:
+
+python34Packages.buildPythonPackage rec {
+  version = "0.9.1";
+  name = "canto-curses-${version}";
+
+  src = fetchFromGitHub {
+    owner = "themoken";
+    repo = "canto-curses";
+    rev = "v${version}";
+    sha256 = "1vb5g0vdkp233r09qv0g4rgz7nprr2a625lf6nf6a51wpimdwgdy";
+  };
+
+  buildInputs = [ readline ncurses canto-daemon ];
+  propagatedBuildInputs = [ canto-daemon ];
+
+  meta = {
+    description = "An ncurses-based console Atom/RSS feed reader";
+    longDescription = ''
+      Canto is an Atom/RSS feed reader for the console that is meant to be
+      quick, concise, and colorful. It's meant to allow you to crank through
+      feeds like you've never cranked before by providing a minimal, yet
+      information packed interface. No navigating menus. No dense blocks of
+      unreadable white text. An interface with almost infinite customization
+      and extensibility using the excellent Python programming language.
+    '';
+    homepage = http://codezen.org/canto-ng/;
+    license = stdenv.lib.licenses.gpl2;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.devhell ];
+  };
+}
diff --git a/pkgs/applications/networking/feedreaders/canto-daemon/default.nix b/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
new file mode 100644
index 000000000000..bf564dd43274
--- /dev/null
+++ b/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, python34Packages, }:
+
+python34Packages.buildPythonPackage rec {
+  version = "0.9.1";
+  name = "canto-daemon-${version}";
+  namePrefix = "";
+
+  src = fetchFromGitHub {
+    owner = "themoken";
+    repo = "canto-next";
+    rev = "v${version}";
+    sha256 = "14lh6x0yz2asspwdi1ims01589r79q0dv77vq61gfjk5wiwfbdwa";
+  };
+
+  propagatedBuildInputs = with python34Packages; [ feedparser ];
+
+  meta = {
+    description = "Daemon for the canto Atom/RSS feed reader";
+    longDescription = ''
+      Canto is an Atom/RSS feed reader for the console that is meant to be
+      quick, concise, and colorful. It's meant to allow you to crank through
+      feeds like you've never cranked before by providing a minimal, yet
+      information packed interface. No navigating menus. No dense blocks of
+      unreadable white text. An interface with almost infinite customization
+      and extensibility using the excellent Python programming language.
+    '';
+    homepage = http://codezen.org/canto-ng/;
+    license = stdenv.lib.licenses.gpl2;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.devhell ];
+  };
+}