nixpkgs-suyu/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
devhell 37f58c4f46 canto-{curses,daemon}: Add packages
This adds canto-daemon, a feedparser background service, and
canto-curses, a highly customizable curses-based frontend.
2015-02-08 14:16:17 +00:00

32 lines
1.1 KiB
Nix

{ 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 ];
};
}