Merge pull request #6229 from devhell/canto
canto-{curses,daemon}: Add packages
This commit is contained in:
commit
7614b2f984
5 changed files with 106 additions and 0 deletions
|
@ -173,6 +173,7 @@
|
|||
./services/mail/spamassassin.nix
|
||||
./services/misc/apache-kafka.nix
|
||||
#./services/misc/autofs.nix
|
||||
./services/misc/canto-daemon.nix
|
||||
./services/misc/cpuminer-cryptonight.nix
|
||||
./services/misc/cgminer.nix
|
||||
./services/misc/dictd.nix
|
||||
|
|
37
nixos/modules/services/misc/canto-daemon.nix
Normal file
37
nixos/modules/services/misc/canto-daemon.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
||||
cfg = config.services.canto-daemon;
|
||||
|
||||
in {
|
||||
|
||||
##### interface
|
||||
|
||||
options = {
|
||||
|
||||
services.canto-daemon = {
|
||||
enable = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "Whether to enable the canto RSS daemon.";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
##### implementation
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
systemd.user.services.canto-daemon = {
|
||||
description = "Canto RSS Daemon";
|
||||
after = [ "network.target" ];
|
||||
wantedBy = [ "default.target" ];
|
||||
serviceConfig.ExecStart = "${pkgs.canto-daemon}/bin/canto-daemon";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -9640,6 +9640,10 @@ let
|
|||
|
||||
camlistore = callPackage ../applications/misc/camlistore { };
|
||||
|
||||
canto-curses = callPackage ../applications/networking/feedreaders/canto-curses { };
|
||||
|
||||
canto-daemon = callPackage ../applications/networking/feedreaders/canto-daemon { };
|
||||
|
||||
carrier = builderDefsPackage (import ../applications/networking/instant-messengers/carrier/2.5.0.nix) {
|
||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss
|
||||
gtkspell aspell gettext ncurses avahi dbus dbus_glib python
|
||||
|
|
Loading…
Reference in a new issue