libpinyin: 2.1.91 -> 2.3.0
This commit is contained in:
parent
3ea6859512
commit
7d8d9e4799
1 changed files with 17 additions and 12 deletions
|
@ -1,31 +1,36 @@
|
||||||
{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, glib, db, pkgconfig }:
|
{ stdenv, fetchurl, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
, glib
|
||||||
|
, db
|
||||||
|
, pkgconfig
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
modelData = fetchurl {
|
modelData = fetchurl {
|
||||||
url = "mirror://sourceforge/libpinyin/models/model14.text.tar.gz";
|
url = "mirror://sourceforge/libpinyin/models/model17.text.tar.gz";
|
||||||
sha256 = "0qqk30nflj07zjhs231c95ln4yj4ipzwxxiwrxazrg4hb8bhypqq";
|
sha256 = "1kb2nswpsqlk2qm5jr7vqcp97f2dx7nvpk24lxjs1g12n252f5z0";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libpinyin-${version}";
|
name = "libpinyin-${version}";
|
||||||
version = "2.1.91";
|
version = "2.3.0";
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook glib db pkgconfig ];
|
|
||||||
|
|
||||||
postUnpack = ''
|
|
||||||
tar -xzf ${modelData} -C $sourceRoot/data
|
|
||||||
'';
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "libpinyin";
|
owner = "libpinyin";
|
||||||
repo = "libpinyin";
|
repo = "libpinyin";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0jbvn65p3zh0573hh27aasd3qly5anyfi8jnps2dxi0my09wbrq3";
|
sha256 = "14fkpp16s5k0pbw5wwd24pqr0qbdjgbl90n9aqwx72m03n7an40l";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postUnpack = ''
|
||||||
|
tar -xzf ${modelData} -C $sourceRoot/data
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook glib db pkgconfig ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Library for intelligent sentence-based Chinese pinyin input method";
|
description = "Library for intelligent sentence-based Chinese pinyin input method";
|
||||||
homepage = https://sourceforge.net/projects/libpinyin;
|
homepage = "https://sourceforge.net/projects/libpinyin";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ ericsagnes ];
|
maintainers = with maintainers; [ ericsagnes ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
|
Loading…
Reference in a new issue