nix: replace silver-searcher with fd

The former has been removed from Nixpkgs and won't be available on the
next bump.
This commit is contained in:
Wolfgang Walther
2026-06-05 20:29:48 +00:00
parent da8738b88e
commit b114bb9395
4 changed files with 9 additions and 8 deletions
+2 -2
View File
@@ -5,11 +5,11 @@
, curl
, devCabalOptions
, entr
, fd
, git
, graphviz
, hsie
, nix
, silver-searcher
, stdenv
, style
, tests
@@ -41,7 +41,7 @@ let
}
''
while true; do
(! ${silver-searcher}/bin/ag -l . | ${entr}/bin/entr -dr "$_arg_command" "''${_arg_leftovers[@]}")
(! ${fd}/bin/fd -H | ${entr}/bin/entr -dr "$_arg_command" "''${_arg_leftovers[@]}")
done
'';