nixpkgs/pkgs/by-name/he/hextazy/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
722 B
Nix
Raw Normal View History

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 {
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
};
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";
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";
};
}