ngrrram: init at 1.0.3

This commit is contained in:
Guanran Wang 2024-05-29 05:12:09 +08:00
parent c5187508b1
commit 7a3d802160
No known key found for this signature in database
GPG Key ID: 91F97D9ED12639CF

View File

@ -0,0 +1,29 @@
{
lib,
fetchFromGitHub,
nix-update-script,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "ngrrram";
version = "1.0.3";
src = fetchFromGitHub {
owner = "wintermute-cell";
repo = "ngrrram";
rev = "v${version}";
hash = "sha256-65cbNsGQZSpxKV0lq/Z7TK7CODPTqayOiPStukFbo44=";
};
cargoHash = "sha256-CWk3ixajgDI1oOOZ4qBZw5jq1xlJtxa6sAQu+fyk4rI=";
passthru.updateScript = nix-update-script { };
meta = {
description = "A TUI tool to help you type faster and learn new layouts. Includes a free cat";
homepage = "https://github.com/wintermute-cell/ngrrram";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ Guanran928 ];
mainProgram = "ngrrram";
};
}