From c7bbe151024bf04596d2edf4b06a0397c945e6a7 Mon Sep 17 00:00:00 2001 From: Alexander Tsamutali Date: Mon, 1 Feb 2016 03:31:57 +0300 Subject: [PATCH] pkgs/tools/inputmethods/uim: Now depends on m17n-db and m17n-lib. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds support for some simple input methods like russian ЙЦУКЕН keyboard. --- pkgs/tools/inputmethods/uim/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/inputmethods/uim/default.nix b/pkgs/tools/inputmethods/uim/default.nix index 160efe2ded8..19de302e7b1 100644 --- a/pkgs/tools/inputmethods/uim/default.nix +++ b/pkgs/tools/inputmethods/uim/default.nix @@ -1,4 +1,5 @@ -{stdenv, fetchurl, intltool, pkgconfig, qt4, gtk2, gtk3, kdelibs, cmake, anthy}: +{stdenv, fetchurl, intltool, pkgconfig, qt4, gtk2, gtk3, kdelibs, + cmake, anthy, automoc4, m17n_lib, m17n_db}: stdenv.mkDerivation rec { version = "1.8.6"; @@ -13,6 +14,9 @@ stdenv.mkDerivation rec { kdelibs cmake anthy + automoc4 + m17n_lib + m17n_db ]; patches = [ ./immodules_cache.patch ];