makefu {1,2} Reaktor: add random-emoji plugin to Reaktor to pnp"

This commit is contained in:
makefu 2015-10-05 17:51:14 +02:00
parent 75f33dd6a1
commit e7a5c39f4b
3 changed files with 31 additions and 0 deletions

View file

@ -23,6 +23,7 @@
## \/ are only plugins, must enable Reaktor explicitly ## \/ are only plugins, must enable Reaktor explicitly
../2configs/Reaktor/stockholmLentil.nix ../2configs/Reaktor/stockholmLentil.nix
../2configs/Reaktor/simpleExtend.nix ../2configs/Reaktor/simpleExtend.nix
../2configs/Reaktor/random-emoji.nix
../2configs/Reaktor/titlebot.nix ../2configs/Reaktor/titlebot.nix
../2configs/exim-retiolum.nix ../2configs/exim-retiolum.nix

View file

@ -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}' } })
'';
}

View file

@ -0,0 +1,5 @@
#!/bin/sh
curl http://emojicons.com/random -s | \
grep data-text | \
sed -n 's/.*>\(.*\)<\/textarea>/\1/p' | \
head -n 1