Merge pull request #246402 from Piturnah/heh

heh: init at 0.4.1
This commit is contained in:
davidak 2023-08-06 14:49:16 +02:00 committed by GitHub
commit 8f5f44b905
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 1 deletions

View file

@ -13294,7 +13294,7 @@
};
piturnah = {
email = "peterhebden6@gmail.com";
github = "piturnah";
github = "Piturnah";
githubId = 20472367;
name = "Peter Hebden";
};

View file

@ -0,0 +1,27 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "heh";
version = "0.4.1";
src = fetchFromGitHub {
owner = "ndd7xv";
repo = pname;
rev = "v${version}";
hash = "sha256-IIF/bkTLwR8pCs/hJ625T3NsiKf/6Zf1cW2i4lsiK4U=";
};
cargoHash = "sha256-tDvqaNVuzv1BlS/oNI1D/WV1b5uHreT3Ak/6ruqKXQc=";
meta = with lib; {
description = "A cross-platform terminal UI used for modifying file data in hex or ASCII.";
homepage = "https://github.com/ndd7xv/heh";
changelog = "https://github.com/ndd7xv/heh/releases/tag/${src.rev}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ piturnah ];
};
}

View file

@ -1786,6 +1786,8 @@ with pkgs;
headset-charge-indicator = callPackage ../tools/audio/headset-charge-indicator { };
heh = callPackage ../applications/editors/heh { };
hexdiff = callPackage ../tools/misc/hexdiff { };
httm = darwin.apple_sdk_11_0.callPackage ../tools/filesystems/httm { };