24 lines
591 B
Nix
24 lines
591 B
Nix
|
{ lib, fetchFromGitHub, rustPlatform }:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "hexdino";
|
||
|
version = "0.1.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Luz";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
hash = "sha256-glbyftCJiP0/5trW7DOcVCU2q4ZH3zFK96eyGuYR8eY=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-nldA8gDMj0iO+HgatiuMqzR6ZCjbxFsTp5pDGbFKA1k=";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Hex editor with vim like keybindings written in Rust";
|
||
|
homepage = "https://github.com/Luz/hexdino";
|
||
|
license = licenses.mit;
|
||
|
maintainers = [ maintainers.luz ];
|
||
|
mainProgram = "hexdino";
|
||
|
};
|
||
|
}
|