summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lass@blue.r>2018-07-03 21:35:43 +0200
committerlassulus <lass@blue.r>2018-07-03 21:35:43 +0200
commit70e8c4b0a4255a989bf93fe6fca96244ee617eee (patch)
treeb7d3c5e17ffbfb5977d16924d65c65a93dc3f46e
parentd8f9ed5674ad041aab417e0aedfae71b25978119 (diff)
Reaktor taskwarrior: fix path to taskwarrior
-rw-r--r--krebs/5pkgs/simple/Reaktor/plugins.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/5pkgs/simple/Reaktor/plugins.nix b/krebs/5pkgs/simple/Reaktor/plugins.nix
index 418a3c73c..cd389366e 100644
--- a/krebs/5pkgs/simple/Reaktor/plugins.nix
+++ b/krebs/5pkgs/simple/Reaktor/plugins.nix
@@ -144,7 +144,7 @@ rec {
taskwarrior = buildSimpleReaktorPlugin "task" {
pattern = "^task: (?P<args>.*)$$";
script = pkgs.writeDash "task-wrapper" ''
- task "$*"
+ ${pkgs.taskwarrior}/bin/task "$*"
'';
};