Merge pull request #214844 from urandom2/rime-cli

Fixes https://github.com/NixOS/nixpkgs/issues/214147

authored by Sandro and committed by GitHub fb280307 fdf6e37d

+25
+23
pkgs/applications/office/rime-cli/default.nix
···
··· 1 + { buildGoModule, fetchFromGitHub, lib }: 2 + 3 + buildGoModule rec { 4 + pname = "rime-cli"; 5 + version = "0.0.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "puddinging"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + hash = "sha256-CI0Jva7oA/zUGatv+wCdByqbTBNQRw+4clr8IDKX6HQ="; 12 + }; 13 + 14 + vendorHash = null; 15 + 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 = "A command line tool to add customized vocabulary for Rime IME"; 20 + license = licenses.asl20; 21 + maintainers = with maintainers; [ urandom ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 31653 31654 qemacs = callPackage ../applications/editors/qemacs { }; 31655 31656 roxctl = callPackage ../applications/networking/cluster/roxctl { 31657 }; 31658
··· 31653 31654 qemacs = callPackage ../applications/editors/qemacs { }; 31655 31656 + rime-cli = callPackage ../applications/office/rime-cli {}; 31657 + 31658 roxctl = callPackage ../applications/networking/cluster/roxctl { 31659 }; 31660