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:
parent
54bb59c404
commit
92d048aec6
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue