summary refs log tree commit diff
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorAlexey Levan <a.levan@thenewmotion.com>2014-11-07 11:12:03 +0200
committerAlexey Levan <a.levan@thenewmotion.com>2014-11-07 11:17:48 +0200
commit662d357684f74834f7e78be5afc29d004af1dbcb (patch)
tree7eb13f264d27dfeba1c712d0a1896f1497ce4b6b /pkgs/tools/inputmethods
parent3e118edf3aba5924909a8a9761f71aa51310e502 (diff)
downloadnixlib-662d357684f74834f7e78be5afc29d004af1dbcb.tar
nixlib-662d357684f74834f7e78be5afc29d004af1dbcb.tar.gz
nixlib-662d357684f74834f7e78be5afc29d004af1dbcb.tar.bz2
nixlib-662d357684f74834f7e78be5afc29d004af1dbcb.tar.lz
nixlib-662d357684f74834f7e78be5afc29d004af1dbcb.tar.xz
nixlib-662d357684f74834f7e78be5afc29d004af1dbcb.tar.zst
nixlib-662d357684f74834f7e78be5afc29d004af1dbcb.zip
Add anthy support to uim
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/uim/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/inputmethods/uim/default.nix b/pkgs/tools/inputmethods/uim/default.nix
index b8ee95fae92c..1da552a46e2c 100644
--- a/pkgs/tools/inputmethods/uim/default.nix
+++ b/pkgs/tools/inputmethods/uim/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, intltool, pkgconfig, qt4, gtk2, gtk3, kdelibs, cmake, ... }:
+{stdenv, fetchurl, intltool, pkgconfig, qt4, gtk2, gtk3, kdelibs, cmake, anthy, ... }:
 
 stdenv.mkDerivation rec {
   version = "1.8.6";
@@ -12,6 +12,7 @@ stdenv.mkDerivation rec {
     gtk3
     kdelibs
     cmake
+    anthy
   ];
 
   patches = [ ./immodules_cache.patch ];
@@ -26,6 +27,7 @@ stdenv.mkDerivation rec {
     "--with-qt4-immodule"
     "--with-skk"
     "--with-x"
+    "--with-anthy-utf8"
   ];
 
   dontUseCmakeConfigure = true;