mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
libpinyin: init at 1.3.0
This commit is contained in:
parent
7a89a85622
commit
a592c9c781
2 changed files with 21 additions and 0 deletions
19
pkgs/tools/inputmethods/libpinyin/default.nix
Normal file
19
pkgs/tools/inputmethods/libpinyin/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl, glib, db, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libpinyin-1.3.0";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Library for intelligent sentence-based Chinese pinyin input method";
|
||||
homepace = https://sourceforge.net/projects/libpinyin;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
||||
buildInputs = [ glib db pkgconfig ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/libpinyin/libpinyin/libpinyin-1.3.0.tar.gz";
|
||||
sha256 = "e105c443b01cd67b9db2a5236435d5441cf514b997b891215fa65f16030cf1f2";
|
||||
};
|
||||
}
|
|
@ -1030,6 +1030,8 @@ in
|
|||
|
||||
anthy = callPackage ../tools/inputmethods/anthy { };
|
||||
|
||||
libpinyin = callPackage ../tools/inputmethods/libpinyin { };
|
||||
|
||||
m17n_db = callPackage ../tools/inputmethods/m17n-db { };
|
||||
|
||||
m17n_lib = callPackage ../tools/inputmethods/m17n-lib { };
|
||||
|
|
Loading…
Reference in a new issue