Merge pull request #324795 from AkechiShiro/init-hextazy
hextazy: init at 0.2
This commit is contained in:
commit
d2f01055af
29
pkgs/by-name/he/hextazy/package.nix
Normal file
29
pkgs/by-name/he/hextazy/package.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user