From 8c877804e3d5c07a82f1e913162af3eeaf309508 Mon Sep 17 00:00:00 2001 From: Jan Malakhovski Date: Tue, 5 Dec 2017 11:44:30 +0000 Subject: [PATCH] uim: use system expat --- pkgs/tools/inputmethods/uim/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/inputmethods/uim/default.nix b/pkgs/tools/inputmethods/uim/default.nix index 5a13eccb977..b383b473907 100644 --- a/pkgs/tools/inputmethods/uim/default.nix +++ b/pkgs/tools/inputmethods/uim/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, intltool, pkgconfig, cmake -, ncurses, m17n_lib, m17n_db +, ncurses, m17n_lib, m17n_db, expat , withAnthy ? true, anthy ? null , withGtk ? true , withGtk2 ? withGtk, gtk2 ? null @@ -29,6 +29,7 @@ stdenv.mkDerivation rec { cmake m17n_lib m17n_db + expat ] ++ optional withAnthy anthy ++ optional withGtk2 gtk2 @@ -45,6 +46,7 @@ stdenv.mkDerivation rec { "--with-skk" "--with-x" "--with-xft" + "--with-expat=${expat.dev}" ] ++ optional withAnthy "--with-anthy-utf8" ++ optional withGtk2 "--with-gtk2"