blob: 80f1f7765b2778037be7ecb9e48753975610b30e (
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
|
{ config, lib, pkgs, ... }:
with pkgs;
let
random-issue = pkgs.writeScript "random-issue" (builtins.readFile ./random-issue.sh);
random-issue-path = lib.makeSearchPath "bin" (with pkgs; [
coreutils
git
gnused
lentil]);
in {
krebs.Reaktor.enable = true;
krebs.Reaktor.debug = true;
# krebs.Reaktor.nickname = "test-reaktor";
# TODO: make origin variable
krebs.Reaktor.extraConfig = ''
public_commands.insert(0,{
'capname' : "stockholm-issue",
'pattern' : indirect_pattern.format("stockholm-issue"),
'argv' : ["${random-issue}"],
'env' : { 'state_dir': workdir,
'PATH':'${random-issue-path}',
'origin':'http://cgit.pnp/stockholm' } })
'';
}
|