From 46e297cf987ef4fb1eb3b4eac1f978a4c2b80316 Mon Sep 17 00:00:00 2001 From: PerchunPak Date: Wed, 22 Oct 2025 13:40:04 +0200 Subject: [PATCH] bat-extras.batgrep: disable tests --- pkgs/tools/misc/bat-extras/modules/batgrep.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/misc/bat-extras/modules/batgrep.nix b/pkgs/tools/misc/bat-extras/modules/batgrep.nix index 8ce898761c5b..72fc2ee8c076 100644 --- a/pkgs/tools/misc/bat-extras/modules/batgrep.nix +++ b/pkgs/tools/misc/bat-extras/modules/batgrep.nix @@ -11,5 +11,8 @@ buildBatExtrasPkg { 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"; }