[Nix-dev] uim: add anthy utf8

Anonymous anonymous at foto.nl1.torservers.net
Fri Aug 29 04:48:26 CEST 2014


uim: add anthy utf8
---

diff --git a/pkgs/tools/inputmethods/uim/default.nix b/pkgs/tools/inputmethods/uim/default.nix
index b8ee95f..841a11d 100644
--- a/pkgs/tools/inputmethods/uim/default.nix
+++ b/pkgs/tools/inputmethods/uim/default.nix
@@ -1,7 +1,15 @@
-{stdenv, fetchurl, intltool, pkgconfig, qt4, gtk2, gtk3, kdelibs, cmake, ... }:
+{ stdenv, fetchurl
+, intltool, pkgconfig, qt4, gtk2, gtk3, kdelibs, cmake
+, anthy
+, ...
+}:
 
-stdenv.mkDerivation rec {
+let
   version = "1.8.6";
+
+in
+
+stdenv.mkDerivation rec {
   name = "uim-${version}";
 
   buildInputs = [
@@ -12,6 +20,7 @@ stdenv.mkDerivation rec {
     gtk3
     kdelibs
     cmake
+    anthy
   ];
 
   patches = [ ./immodules_cache.patch ];
@@ -25,6 +34,7 @@ stdenv.mkDerivation rec {
     "--with-qt4"
     "--with-qt4-immodule"
     "--with-skk"
+    "--with-anthy-utf8"
     "--with-x"
   ];
 



More information about the nix-dev mailing list