tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / tools / text / pinyin-tool / default.nix
blob54520d5d317e128c98ecff1eb6c343380cb2dfc1
2   stdenv,
3   lib,
4   rustPlatform,
5   fetchFromGitHub,
6   Security,
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "pinyin-tool";
11   version = "0.1.3";
13   src = fetchFromGitHub {
14     owner = "briankung";
15     repo = pname;
16     rev = version;
17     sha256 = "1gwqwxlvdrm4sdyqkvpvvfi6jh6qqn6qybn0z66wm06k62f8zj5b";
18   };
20   cargoHash = "sha256-jeRKtKv8Lg/ritl42dMbEQpXaNlCIaHTrw0xtPQitMc=";
22   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
24   meta = with lib; {
25     description = "Simple command line tool for converting Chinese characters to space-separate pinyin words";
26     mainProgram = "pinyin-tool";
27     homepage = "https://github.com/briankung/pinyin-tool";
28     license = licenses.mit;
29     maintainers = with maintainers; [ neonfuz ];
30   };