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

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

23 lines
568 B
Nix
Raw Normal View History

2022-11-27 21:40:40 +00:00
{ lib, fetchFromGitHub, rustPlatform }:
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-11-27 21:40:40 +00:00
version = "0.1.2";
src = fetchFromGitHub {
owner = "Luz";
2022-03-23 20:44:51 +00:00
repo = pname;
rev = version;
2022-11-27 21:40:40 +00:00
sha256 = "sha256-OFtOa6StpOuLgkULnY5MlqDcSTEiMxogowHIBEiGr4E=";
};
2022-11-27 21:40:40 +00:00
cargoSha256 = "sha256-lvLiRQNH3rpu+JTXWhQtXczmGRWGtnnLDknZaMp3d0s=";
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 ];
};
}