libkkc: init at 0.3.5

This commit is contained in:
Ivan Solyankin 2018-01-30 14:47:16 +03:00 committed by Nikolay Amiantov
parent fed464103f
commit 80df6205ed
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ stdenv, fetchurl
, vala, gobjectIntrospection, intltool, python2Packages, glib
, pkgconfig
, libgee, json_glib, marisa, libkkc-data
}:
stdenv.mkDerivation rec {
pname = "libkkc";
version = "0.3.5";
name = "${pname}-${version}";
src = fetchurl {
url = "${meta.homepage}/releases/download/v${version}/${name}.tar.gz";
sha256 = "89b07b042dae5726d306aaa1296d1695cb75c4516f4b4879bc3781fe52f62aef";
};
nativeBuildInputs = [
vala gobjectIntrospection
python2Packages.python python2Packages.marisa
intltool glib pkgconfig
];
buildInputs = [ marisa libkkc-data ];
enableParallelBuilding = true;
propagatedBuildInputs = [ libgee json_glib ];
postInstall = ''
ln -s ${libkkc-data}/lib/libkkc/models $out/share/libkkc/models
'';
meta = with stdenv.lib; {
description = "Japanese Kana Kanji conversion input method library";
homepage = https://github.com/ueno/libkkc;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vanzef ];
platforms = platforms.linux;
};
}

View file

@ -1661,6 +1661,10 @@ with pkgs;
inherit (pythonPackages) marisa;
};
libkkc = callPackage ../tools/inputmethods/libkkc {
inherit (gnome3) libgee;
};
ibus = callPackage ../tools/inputmethods/ibus {
inherit (gnome3) dconf gconf glib;
};