this repo has no description
1{
2 callPackage,
3 entr,
4 ripgrep,
5 writeShellApplication,
6}: {
7 prr = callPackage ./prr.nix {};
8 imbox = callPackage ./imbox.nix {};
9 ubin-client = callPackage ./ubin-client.nix {};
10
11 fswatch = writeShellApplication {
12 name = "fswatch";
13
14 runtimeInputs = [entr ripgrep];
15
16 text = ''
17 rg -l -t "$1" "" | entr -p echo /_
18 '';
19 };
20}