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`.
This commit is contained in:
tarneo 2024-02-13 18:01:58 +01:00
parent 54bb59c404
commit 92d048aec6
No known key found for this signature in database
GPG key ID: BA924E53D0EB3FCC

View file

@ -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;
};