2024-07-11 23:15:53 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
rustPlatform,
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "hextazy";
|
2025-05-10 20:29:01 +00:00
|
|
|
version = "0.8";
|
2024-07-11 23:15:53 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2024-07-24 17:11:31 +02:00
|
|
|
owner = "0xfalafel";
|
2024-07-11 23:15:53 +02:00
|
|
|
repo = "hextazy";
|
2025-05-17 19:48:46 +02:00
|
|
|
tag = version;
|
|
|
|
hash = "sha256-6G0mD55BLMfqpgz1wtQBsAfGKlRcVEYJAPQJ3z8Yxnw=";
|
2024-07-11 23:15:53 +02:00
|
|
|
};
|
|
|
|
|
2025-01-23 08:45:31 +01:00
|
|
|
useFetchCargoVendor = true;
|
2025-05-10 20:29:01 +00:00
|
|
|
cargoHash = "sha256-1i0nngfqF4R/ILbNHrCW1NIEFTfQ5nRhjdKy7uebPi8=";
|
2024-07-11 23:15:53 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "TUI hexeditor in Rust with colored bytes";
|
2024-07-24 17:11:31 +02:00
|
|
|
homepage = "https://github.com/0xfalafel/hextazy";
|
2025-05-13 00:12:29 +04:00
|
|
|
changelog = "https://github.com/0xfalafel/hextazy/releases/tag/${src.rev}";
|
2024-07-11 23:15:53 +02:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ akechishiro ];
|
|
|
|
mainProgram = "hextazy";
|
|
|
|
};
|
|
|
|
}
|