Merge pull request #132951 from neonfuz/pinyin-tool

pinyin-tool: init at 0.1.3
This commit is contained in:
Artturi 2021-08-07 19:29:12 +03:00 committed by GitHub
commit 9c3f8ebeac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, lib, rustPlatform, fetchFromGitHub, Security }:
rustPlatform.buildRustPackage rec {
pname = "pinyin-tool";
version = "0.1.3";
src = fetchFromGitHub {
owner = "briankung";
repo = pname;
rev = version;
sha256 = "1gwqwxlvdrm4sdyqkvpvvfi6jh6qqn6qybn0z66wm06k62f8zj5b";
};
cargoSha256 = "1ixl4bsb8c8dmz9s28a2v5l5f2hi3g9xjy6ribmhybpwmfs4mr4d";
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
meta = with lib; {
description = "A simple command line tool for converting Chinese characters to space-separate pinyin words";
homepage = "https://github.com/briankung/pinyin-tool";
license = licenses.mit;
maintainers = with maintainers; [ neonfuz ];
};
}

View File

@ -8077,6 +8077,10 @@ in
pixiewps = callPackage ../tools/networking/pixiewps {};
pinyin-tool = callPackage ../tools/text/pinyin-tool {
inherit (darwin.apple_sdk.frameworks) Security;
};
pk2cmd = callPackage ../tools/misc/pk2cmd { };
plantuml = callPackage ../tools/misc/plantuml { };