3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #203354 from Luz/hexdino

hexdino: 0.1.1 -> 0.1.2
This commit is contained in:
figsoda 2022-11-28 09:15:50 -05:00 committed by GitHub
commit 987ed5b9c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,19 +1,17 @@
{ lib, fetchFromGitHub, rustPlatform, ncurses }:
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "hexdino";
version = "0.1.1";
version = "0.1.2";
src = fetchFromGitHub {
owner = "Luz";
repo = pname;
rev = version;
sha256 = "1n8gizawx8h58hpyyqivp7vwy7yhn6scipl5rrbvkpnav8qpmk1r";
sha256 = "sha256-OFtOa6StpOuLgkULnY5MlqDcSTEiMxogowHIBEiGr4E=";
};
cargoSha256 = "01869b1d7gbsprcxxj7h9z16pvnzb02j2hywh97gfq5x96gnmkz3";
buildInputs = [ ncurses ];
cargoSha256 = "sha256-lvLiRQNH3rpu+JTXWhQtXczmGRWGtnnLDknZaMp3d0s=";
meta = with lib; {
description = "A hex editor with vim like keybindings written in Rust";