2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform, ncurses }:
|
2020-01-26 04:35:04 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage {
|
|
|
|
pname = "hexdino";
|
2019-11-17 23:40:31 +00:00
|
|
|
version = "0.1.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Luz";
|
|
|
|
repo = "hexdino";
|
|
|
|
rev = "de5b5d7042129f57e0ab36416a06476126bce389";
|
|
|
|
sha256 = "11mz07735gxqfamjcjjmxya6swlvr1p77sgd377zjcmd6z54gwyf";
|
|
|
|
};
|
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "1hpndmpk1zlfvb4r95m13yvnsbjkwgw4pb9ala2d5yzfp38225nm";
|
2019-11-17 23:40:31 +00:00
|
|
|
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-11-17 23:40:31 +00:00
|
|
|
description = "A hex editor with vim like keybindings written in Rust";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Luz/hexdino";
|
2019-11-17 23:40:31 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.luz ];
|
|
|
|
};
|
|
|
|
}
|