diff options
author | makefu <github@syntax-fehler.de> | 2015-10-05 17:51:14 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-10-05 17:51:14 +0200 |
commit | e7779d8016cc06c5b7383e25a2e0608666495ca2 (patch) | |
tree | fe3d2d9c9c67646cd61747da420df5f99557ca2a /makefu/2configs/Reaktor/random-emoji.nix | |
parent | ab48fbd9720508520c5c3f951ed3b10bef139212 (diff) |
makefu {1,2} Reaktor: add random-emoji plugin to Reaktor to pnp"
Diffstat (limited to 'makefu/2configs/Reaktor/random-emoji.nix')
-rw-r--r-- | makefu/2configs/Reaktor/random-emoji.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/makefu/2configs/Reaktor/random-emoji.nix b/makefu/2configs/Reaktor/random-emoji.nix new file mode 100644 index 000000000..b2d99b36b --- /dev/null +++ b/makefu/2configs/Reaktor/random-emoji.nix @@ -0,0 +1,25 @@ +{ config, lib, pkgs, ... }: + +with pkgs; +let + rpkg = pkgs.substituteAll( { + name="random-emoji"; + dir= "bin"; + isExecutable=true; + src= ./random-emoji.sh; + }); + rpkg-path = lib.makeSearchPath "bin" (with pkgs; [ + coreutils + gnused + gnugrep + curl]); +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' : "emoji", + 'pattern' : indirect_pattern.format("emoji"), + 'argv' : ["${rpkg}/bin/random-emoji"], + 'env' : { 'PATH':'${rpkg-path}' } }) + ''; +} |