2024-05-29 05:12:09 +08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
nix-update-script,
|
|
|
|
rustPlatform,
|
|
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ngrrram";
|
|
|
|
version = "1.0.3";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wintermute-cell";
|
|
|
|
repo = "ngrrram";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = "v${version}";
|
2024-05-29 05:12:09 +08:00
|
|
|
hash = "sha256-65cbNsGQZSpxKV0lq/Z7TK7CODPTqayOiPStukFbo44=";
|
|
|
|
};
|
|
|
|
|
2025-01-23 08:45:31 +01:00
|
|
|
cargoHash = "sha256-SCfDXMz8SLmUk8VhbF6Gs4zis01Fhn4OX5amqLXaFV8=";
|
2024-05-29 05:12:09 +08:00
|
|
|
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "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";
|
|
|
|
};
|
|
|
|
}
|