From 92d048aec6be0477c8e3e29cde9081b839ddf9be Mon Sep 17 00:00:00 2001 From: tarneo Date: Tue, 13 Feb 2024 18:01:58 +0100 Subject: [PATCH] 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`. --- pkgs/tools/misc/bat-extras/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/bat-extras/default.nix b/pkgs/tools/misc/bat-extras/default.nix index 0863ebde2afa..d9427803d5ea 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; };