summaryrefslogtreecommitdiffstats
path: root/lass/2configs/reaktor-coders.nix
blob: 7fd6a2a296575d95b575c95b7af073e0a14b33dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{ config, lib, pkgs, ... }:
with import <stockholm/lib>;

let
  hooks = pkgs.reaktor2-plugins.hooks;
in {
  krebs.reaktor2.coders = {
    hostname = "irc.hackint.org";
    port = "9999";
    useTLS = true;
    nick = "reaktor2|lass";
    plugins = [
      {
        plugin = "register";
        config = {
          channels = [
            "#coders"
            "#germany"
            "#panthermoderns"
          ];
        };
      }
      {
        plugin = "system";
        config = {
          workdir = config.krebs.reaktor2.coders.stateDir;
          hooks.PRIVMSG = [
            hooks.sed
            hooks.url-title
            {
              activate = "match";
              pattern = ''^@([^ ]+) (.*)$'';
              command = 1;
              arguments = [2];
              env.HOME = config.krebs.reaktor2.coders.stateDir;
              commands = let
                lambdabot = (import (pkgs.fetchFromGitHub {
                  owner = "NixOS"; repo = "nixpkgs";
                  rev = "a4ec1841da14fc98c5c35cc72242c23bb698d4ac";
                  sha256 = "148fpw31s922hxrf28yhrci296f7c7zd81hf0k6zs05rq0i3szgy";
                }) {}).lambdabot;
                lambdabotWrapper = pkgs.writeDash "lambdabot.wrapper" ''
                  exec ${lambdabot}/bin/lambdabot \
                    -XStandaloneDeriving -XGADTs -XFlexibleContexts \
                    -XFlexibleInstances -XMultiParamTypeClasses \
                    -XOverloadedStrings -XFunctionalDependencies \
                    -e "$@"
                '';
              in {
                pl.filename = pkgs.writeDash "lambdabot-pl" ''
                  ${lambdabotWrapper} "@pl $1"
                '';
                type.filename = pkgs.writeDash "lambdabot-type" ''
                  ${lambdabotWrapper} "@type $1"
                '';
                "let".filename = pkgs.writeDash "lambdabot-let" ''
                  ${lambdabotWrapper} "@let $1"
                '';
                run.filename = pkgs.writeDash "lambdabot-run" ''
                  ${lambdabotWrapper} "@run $1"
                '';
                kind.filename = pkgs.writeDash "lambdabot-kind" ''
                  ${lambdabotWrapper} "@kind $1"
                '';
              };
            }
            {
              activate = "match";
              pattern = ''^!([^ ]+)(?:\s*(.*))?'';
              command = 1;
              arguments = [2];
              commands = {
                ping.filename = pkgs.writeDash "ping" ''
                  exec /run/wrappers/bin/ping -q -c1 "$1" 2>&1 | tail -1
                '';
                google.filename = pkgs.writeDash "google" ''
                  exec ${pkgs.ddgr}/bin/ddgr -C -n1 --json "$@" | \
                    ${pkgs.jq}/bin/jq '@text "\(.[0].abstract) \(.[0].url)"'
                '';
                shrug.filename = pkgs.writeDash "shrug" ''
                  exec echo '¯\_(ツ)_/¯'
                '';
                table.filename = pkgs.writeDash "table" ''
                  exec echo '(╯°□°)╯ ┻━┻'
                '';
              };
            }
          ];
        };
      }
    ];
  };
}