Reaktor: initial commit at 0.3.5
This commit is contained in:
parent
cbac1a7595
commit
0f50750e25
97
krebs/3modules/Reaktor.nix
Normal file
97
krebs/3modules/Reaktor.nix
Normal file
@ -0,0 +1,97 @@
|
||||
{ config, pkgs,lib, ... }:
|
||||
|
||||
|
||||
let
|
||||
kpkgs = import ../5pkgs { inherit pkgs; inherit lib; };
|
||||
|
||||
inherit (lib)
|
||||
mkIf
|
||||
mkOption
|
||||
types
|
||||
singleton
|
||||
isString
|
||||
optionalString
|
||||
concatStrings
|
||||
;
|
||||
|
||||
ReaktorConfig = mkIf ( isString cfg.extraConfig ) pkgs.writeText "config.py" cfg.extraConfig;
|
||||
cfg = config.krebs.Reaktor;
|
||||
|
||||
out = {
|
||||
options.krebs.Reaktor = api;
|
||||
config = mkIf cfg.enable imp;
|
||||
};
|
||||
|
||||
api = {
|
||||
enable = mkOption {
|
||||
default = false;
|
||||
description = ''
|
||||
Start Reaktor at system boot
|
||||
'';
|
||||
};
|
||||
|
||||
nickname = mkOption {
|
||||
default = config.krebs.build.host.name + "|r";
|
||||
type = types.str;
|
||||
description = ''
|
||||
The nick name of the irc bot.
|
||||
Defaults to {hostname}|r
|
||||
'';
|
||||
};
|
||||
|
||||
|
||||
extraConfig = mkOption {
|
||||
default = null;
|
||||
type = types.nullOr types.str;
|
||||
description = ''
|
||||
configuration to be used instead of default ones.
|
||||
Reaktor default cfg can be retrieved via `reaktor get-config`
|
||||
'';
|
||||
};
|
||||
|
||||
ReaktorPkg = mkOption {
|
||||
default = kpkgs.Reaktor;
|
||||
description = ''
|
||||
the Reaktor pkg to use.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
imp = {
|
||||
# for reaktor get-config
|
||||
environment.systemPackages = [ cfg.ReaktorPkg ];
|
||||
|
||||
users.extraUsers = singleton {
|
||||
name = "Reaktor";
|
||||
# uid = config.ids.uids.Reaktor;
|
||||
uid = 2066439104; #genid Reaktor
|
||||
description = "Reaktor user";
|
||||
home = "/var/lib/Reaktor";
|
||||
createHome = true;
|
||||
};
|
||||
|
||||
#users.extraGroups = singleton {
|
||||
# name = "Reaktor";
|
||||
# gid = config.ids.gids.Reaktor;
|
||||
#};
|
||||
|
||||
systemd.services.Reaktor = {
|
||||
path = with pkgs; [
|
||||
utillinux #flock for tell_on-join
|
||||
# git # for nag
|
||||
python # for caps
|
||||
];
|
||||
description = "Reaktor IRC Bot";
|
||||
after = [ "network.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig.User = "Reaktor";
|
||||
environment = {
|
||||
GIT_SSL_CAINFO = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
|
||||
IRC_NICKNAME = cfg.nickname;
|
||||
};
|
||||
serviceConfig.ExecStart = "${cfg.ReaktorPkg}/bin/reaktor run ${if (isString cfg.extraConfig) then cfg.ReaktorConfig else ""}";
|
||||
};
|
||||
};
|
||||
|
||||
in
|
||||
out
|
@ -11,6 +11,7 @@ let
|
||||
./github-hosts-sync.nix
|
||||
./git.nix
|
||||
./nginx.nix
|
||||
./Reaktor.nix
|
||||
./retiolum.nix
|
||||
./urlwatch.nix
|
||||
];
|
||||
|
19
krebs/5pkgs/Reaktor/default.nix
Normal file
19
krebs/5pkgs/Reaktor/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ lib, pkgs,buildPythonPackage,fetchurl, ... }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "Reaktor-${version}";
|
||||
version = "0.3.5";
|
||||
propagatedBuildInputs = with pkgs;[
|
||||
pythonPackages.docopt
|
||||
pythonPackages.requests
|
||||
];
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/R/Reaktor/Reaktor-${version}.tar.gz";
|
||||
sha256 = "1bi92hbm5f4z87biklh8lpjrmfhrdrj7x2hr64lkxpcabgs8kgyh";
|
||||
};
|
||||
meta = {
|
||||
homepage = http://krebsco.de/;
|
||||
description = "An IRC bot based on asynchat";
|
||||
license = lib.licenses.wtfpl;
|
||||
};
|
||||
}
|
@ -19,6 +19,7 @@ rec {
|
||||
nq = callPackage ./nq {};
|
||||
posix-array = callPackage ./posix-array {};
|
||||
pssh = callPackage ./pssh {};
|
||||
Reaktor = callPackage ./Reaktor {};
|
||||
youtube-tools = callPackage ./youtube-tools {};
|
||||
|
||||
execve = name: { filename, argv, envp ? {}, destination ? "" }:
|
||||
|
Loading…
Reference in New Issue
Block a user