2022-12-17 10:02:37 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2021-07-14 22:03:04 +00:00
|
|
|
pname = "hexyl";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "0.14.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-07-14 22:03:04 +00:00
|
|
|
owner = "sharkdp";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = "sha256-di7SBuB4LsnqlP3BdMcsSLj4zpyKA/ninVpRyR9AJaI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
cargoHash = "sha256-fXrdOiCmRgMPJxZIS/SkTkZZkag8ZUhNnMlU4k1m/+0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A command-line hex viewer";
|
|
|
|
longDescription = ''
|
|
|
|
`hexyl` is a simple hex viewer for the terminal. It uses a colored
|
|
|
|
output to distinguish different categories of bytes (NULL bytes,
|
|
|
|
printable ASCII characters, ASCII whitespace characters, other ASCII
|
|
|
|
characters and non-ASCII).
|
|
|
|
'';
|
2021-07-14 22:03:04 +00:00
|
|
|
homepage = "https://github.com/sharkdp/hexyl";
|
2022-12-17 10:02:37 +00:00
|
|
|
changelog = "https://github.com/sharkdp/hexyl/blob/v${version}/CHANGELOG.md";
|
2021-07-14 22:03:04 +00:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2022-12-17 10:02:37 +00:00
|
|
|
maintainers = with maintainers; [ dywedir figsoda SuperSandro2000 ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "hexyl";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|