nixpkgs/pkgs/applications/editors/hexdino/default.nix

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

25 lines
609 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform, ncurses }:
2020-01-26 04:35:04 +00:00
2022-03-23 20:44:51 +00:00
rustPlatform.buildRustPackage rec {
2020-01-26 04:35:04 +00:00
pname = "hexdino";
2022-03-23 20:44:51 +00:00
version = "0.1.1";
src = fetchFromGitHub {
owner = "Luz";
2022-03-23 20:44:51 +00:00
repo = pname;
rev = version;
sha256 = "1n8gizawx8h58hpyyqivp7vwy7yhn6scipl5rrbvkpnav8qpmk1r";
};
2022-03-23 20:44:51 +00:00
cargoSha256 = "01869b1d7gbsprcxxj7h9z16pvnzb02j2hywh97gfq5x96gnmkz3";
buildInputs = [ ncurses ];
meta = with lib; {
description = "A hex editor with vim like keybindings written in Rust";
homepage = "https://github.com/Luz/hexdino";
license = licenses.mit;
maintainers = [ maintainers.luz ];
};
}