summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorAntonio Yang <yanganto@gmail.com>2020-09-17 00:01:57 +0800
committerAntonio Yang <yanganto@gmail.com>2020-10-03 22:27:22 +0800
commit0c138794af79ddc3907b6e3375edde5aaec08001 (patch)
treeee11a07bdb58a2124cbdfe1a70b4406e2d547ebf /pkgs/tools/inputmethods
parent9d71f4f2e20eb6b0f51e99212e66d42c0b89cf2d (diff)
input methods: add hime
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/hime/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/hime/default.nix b/pkgs/tools/inputmethods/hime/default.nix
new file mode 100644
index 000000000000..cce1ec495150
--- /dev/null
+++ b/pkgs/tools/inputmethods/hime/default.nix
@@ -0,0 +1,40 @@
+{
+stdenv, fetchFromGitHub, pkgconfig, which, gtk2, gtk3, qt4, qt5, libXtst, lib,
+enableChewing ? true, libchewing,
+enableAnthy ? true, anthy,
+}:
+
+stdenv.mkDerivation {
+ name = "hime";
+ version = "unstable-2020-06-27";
+
+ src = fetchFromGitHub {
+ owner = "hime-ime";
+ repo = "hime";
+ rev = "c89751a58836906e6916355fd037fc74fd7a7a15";
+ sha256 = "024w67q0clzxigsrvqbxpiy8firjvrqi7wbkkcapzzhzapv3nm8x";
+ };
+
+ nativeBuildInputs = [ which pkgconfig ];
+ buildInputs = [ libXtst gtk2 gtk3 qt4 qt5.qtbase ]
+ ++ lib.optional enableChewing libchewing
+ ++ lib.optional enableAnthy anthy;
+
+ patchPhase = ''
+ patchShebangs configure
+ '';
+
+ # The configure script already auto-detect libchewing and anthy,
+ # so we do not need additional flags for libchewing or anthy
+ configureFlags = [ "--disable-lib64" "--disable-qt5-immodule" ];
+
+
+ meta = with stdenv.lib; {
+ homepage = "http://hime-ime.github.io/";
+ downloadPage = "https://github.com/hime-ime/hime/downloads";
+ description = "A useful input method engine for Asia region";
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ yanganto ];
+ };
+}