summary refs log blame commit diff
path: root/pkgs/development/libraries/libpinyin/default.nix
blob: bda5143208ec98afceb1619b2134032b2321c202 (plain) (tree)
1
2
3
4
5
6
7
8






                                                                                       
                                                             










                                                                                    
{ 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";
    homepage    = 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";
  };
}