about summary refs log tree commit diff
path: root/pkgs/tools/misc/bat-extras/default.nix
diff options
context:
space:
mode:
authortarneo <tarneo@tarneo.fr>2024-02-13 18:01:58 +0100
committertarneo <tarneo@tarneo.fr>2024-02-17 18:03:45 +0100
commit92d048aec6be0477c8e3e29cde9081b839ddf9be (patch)
tree6e45c00362a477b182a8f8ec4d738a7583fde41d /pkgs/tools/misc/bat-extras/default.nix
parent54bb59c4041b4f1a558a6e79521316663e99e66a (diff)
bat-extras: 2023.06.15 -> 2024.02.12
The most notable change in this version is the fix of `batman` making an
infinite recursion when $BAT_PAGER is set.
See https://github.com/eth-p/bat-extras/releases/tag/v2024.02.12

This commit also changes `sha256` to `hash` and makes the repo name
explicit instead of reusing the package name with `pname`.
Diffstat (limited to 'pkgs/tools/misc/bat-extras/default.nix')
-rw-r--r--pkgs/tools/misc/bat-extras/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/bat-extras/default.nix b/pkgs/tools/misc/bat-extras/default.nix
index 0863ebde2afa4..d9427803d5ea4 100644
--- a/pkgs/tools/misc/bat-extras/default.nix
+++ b/pkgs/tools/misc/bat-extras/default.nix
@@ -28,13 +28,13 @@ let
   # This includes the complete source so the per-script derivations can run the tests.
   core = stdenv.mkDerivation rec {
     pname   = "bat-extras";
-    version = "2023.06.15";
+    version = "2024.02.12";
 
     src = fetchFromGitHub {
       owner  = "eth-p";
-      repo   = pname;
+      repo   = "bat-extras";
       rev    = "v${version}";
-      sha256 = "sha256-dBrnUIG3EuEgDZBbzrspP5UReiUKjrMSYIe5QtZ0/tU=";
+      hash   = "sha256-EPDGQkwwxYFTJPJtwSkVrpBf27+VlMd/nqEkJupHlyA=";
       fetchSubmodules = true;
     };