mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
libkkc: init at 0.3.5
This commit is contained in:
parent
fed464103f
commit
80df6205ed
39
pkgs/tools/inputmethods/libkkc/default.nix
Normal file
39
pkgs/tools/inputmethods/libkkc/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user