mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
30 lines
702 B
Nix
30 lines
702 B
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
fetchFromGitHub,
|
||
|
rustPlatform,
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "hextazy";
|
||
|
version = "0.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "faelian";
|
||
|
repo = "hextazy";
|
||
|
rev = "${version}";
|
||
|
hash = "sha256-e1uoKMejdTz8KH7uFkZ9YCE1WTwaxCZjcxh4g2ermNY=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-5Z+ptr1JmeiP4hK8k+M1d189I0X53/jRUEFwgWGK3xQ=";
|
||
|
|
||
|
meta = {
|
||
|
description = "TUI hexeditor in Rust with colored bytes";
|
||
|
homepage = "https://github.com/faelian/hextazy";
|
||
|
changelog = "https://github.com/faelian/hextazy/releases/tags/${src.rev}";
|
||
|
license = lib.licenses.mit;
|
||
|
maintainers = with lib.maintainers; [ akechishiro ];
|
||
|
mainProgram = "hextazy";
|
||
|
};
|
||
|
}
|