Files
2025-10-24 17:36:22 +02:00

19 lines
359 B
Nix

{
buildBatExtrasPkg,
less,
coreutils,
ripgrep,
}:
buildBatExtrasPkg {
name = "batgrep";
dependencies = [
less
coreutils
ripgrep
];
# The tests are broken with the new bat 0.26.0
# https://github.com/eth-p/bat-extras/issues/143
doCheck = false;
meta.description = "Quickly search through and highlight files using ripgrep";
}