forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / by-name / ng / ngrrram / package.nix
blob2ae07b76cac7995e71426ca411436a71446dd26b
2   lib,
3   fetchFromGitHub,
4   nix-update-script,
5   rustPlatform,
6 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "ngrrram";
9   version = "1.0.3";
11   src = fetchFromGitHub {
12     owner = "wintermute-cell";
13     repo = "ngrrram";
14     rev = "v${version}";
15     hash = "sha256-65cbNsGQZSpxKV0lq/Z7TK7CODPTqayOiPStukFbo44=";
16   };
18   cargoHash = "sha256-CWk3ixajgDI1oOOZ4qBZw5jq1xlJtxa6sAQu+fyk4rI=";
20   passthru.updateScript = nix-update-script { };
22   meta = {
23     description = "TUI tool to help you type faster and learn new layouts. Includes a free cat";
24     homepage = "https://github.com/wintermute-cell/ngrrram";
25     license = lib.licenses.gpl3Only;
26     maintainers = with lib.maintainers; [ Guanran928 ];
27     mainProgram = "ngrrram";
28   };