aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-10-28 10:17:49 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-30 04:50:37 +0100
commitac8eaa85070e736af1548faeeb4b9b6e9976494d (patch)
tree63237e5cb3c8d2815152ea725488de1a83572e42 /pkgs/tools/inputmethods
parent20b02b80aa46b8dc96e256500e3c22fd0c22817d (diff)
treewide: fix *Flags
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/fcitx/unwrapped.nix28
1 files changed, 14 insertions, 14 deletions
diff --git a/pkgs/tools/inputmethods/fcitx/unwrapped.nix b/pkgs/tools/inputmethods/fcitx/unwrapped.nix
index 636cb518fd23..60de9e6910e3 100644
--- a/pkgs/tools/inputmethods/fcitx/unwrapped.nix
+++ b/pkgs/tools/inputmethods/fcitx/unwrapped.nix
@@ -75,20 +75,20 @@ stdenv.mkDerivation rec {
libxkbcommon libxml2 dbus cairo gtk2 gtk3 pango qt4 libuuid
];
- cmakeFlags = ''
- -DENABLE_QT_IM_MODULE=ON
- -DENABLE_GTK2_IM_MODULE=ON
- -DENABLE_GTK3_IM_MODULE=ON
- -DENABLE_GIR=OFF
- -DENABLE_OPENCC=OFF
- -DENABLE_PRESAGE=OFF
- -DENABLE_XDGAUTOSTART=OFF
- -DENABLE_PINYIN=${if withPinyin then "ON" else "OFF"}
- -DENABLE_TABLE=ON
- -DENABLE_SPELL=ON
- -DENABLE_QT_GUI=ON
- -DXKB_RULES_XML_FILE='${xkeyboard_config}/share/X11/xkb/rules/evdev.xml'
- '';
+ cmakeFlags = [
+ "-DENABLE_QT_IM_MODULE=ON"
+ "-DENABLE_GTK2_IM_MODULE=ON"
+ "-DENABLE_GTK3_IM_MODULE=ON"
+ "-DENABLE_GIR=OFF"
+ "-DENABLE_OPENCC=OFF"
+ "-DENABLE_PRESAGE=OFF"
+ "-DENABLE_XDGAUTOSTART=OFF"
+ "-DENABLE_PINYIN=${if withPinyin then "ON" else "OFF"}"
+ "-DENABLE_TABLE=ON"
+ "-DENABLE_SPELL=ON"
+ "-DENABLE_QT_GUI=ON"
+ "-DXKB_RULES_XML_FILE='${xkeyboard_config}/share/X11/xkb/rules/evdev.xml'"
+ ];
meta = with stdenv.lib; {
homepage = https://github.com/fcitx/fcitx;