diff options
author | lassulus <lass@blue.r> | 2018-07-03 21:35:43 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-07-03 21:35:43 +0200 |
commit | 70e8c4b0a4255a989bf93fe6fca96244ee617eee (patch) | |
tree | b7d3c5e17ffbfb5977d16924d65c65a93dc3f46e /krebs/5pkgs/simple/Reaktor/plugins.nix | |
parent | d8f9ed5674ad041aab417e0aedfae71b25978119 (diff) |
Reaktor taskwarrior: fix path to taskwarrior
Diffstat (limited to 'krebs/5pkgs/simple/Reaktor/plugins.nix')
-rw-r--r-- | krebs/5pkgs/simple/Reaktor/plugins.nix | 2 |
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 "$*" ''; }; |