diff options
author | lassulus <lass@aidsballs.de> | 2015-12-29 19:24:01 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-12-29 19:24:01 +0100 |
commit | 42380546976c15d99dc0e9a65607ba4aafb31590 (patch) | |
tree | 4b0ae218de102219e9865ae4da65cef8490fafaa /makefu/2configs/Reaktor/stockholmLentil.nix | |
parent | f22fe4e5d97237dbe76bc856909950487634c7be (diff) | |
parent | 676d0f748138f0e1fa3cb2177b5a08a857f17fac (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/Reaktor/stockholmLentil.nix')
-rw-r--r-- | makefu/2configs/Reaktor/stockholmLentil.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/makefu/2configs/Reaktor/stockholmLentil.nix b/makefu/2configs/Reaktor/stockholmLentil.nix deleted file mode 100644 index 21f0305fb..000000000 --- a/makefu/2configs/Reaktor/stockholmLentil.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ config, lib, pkgs, ... }: - -with pkgs; -let - random-issue = pkgs.substituteAll( { - name="random-issue"; - dir= "bin"; - isExecutable=true; - src= ./random-issue.sh; - }); - random-issue-path = lib.makeSearchPath "bin" (with pkgs; [ - coreutils - git - gnused - lentil]); -in { - # TODO: make origin a variable, <- module is generic enough to handle different origins, not only stockholm - krebs.Reaktor.extraConfig = '' - public_commands.insert(0,{ - 'capname' : "stockholm-issue", - 'pattern' : indirect_pattern.format("stockholm-issue"), - 'argv' : ["${random-issue}/bin/random-issue"], - 'env' : { 'state_dir': workdir, - 'PATH':'${random-issue-path}', - 'origin':'http://cgit.pnp/stockholm' } }) - ''; -} |