silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / by-name / ri / rime-cli / package.nix
blob9c89db21259585df9d47b05535e9eee72a1fc5df
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "rime-cli";
5   version = "0.0.3";
7   src = fetchFromGitHub {
8     owner = "puddinging";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-CI0Jva7oA/zUGatv+wCdByqbTBNQRw+4clr8IDKX6HQ=";
12   };
14   vendorHash = null;
16   meta = with lib; {
17     homepage = "https://github.com/puddinging/rime-cli";
18     changelog = "https://github.com/puddinging/rime-cli/releases/tag/v${version}";
19     description = "Command line tool to add customized vocabulary for Rime IME";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ urandom ];
22     mainProgram = "rime-cli";
23   };