summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2017-08-29 21:32:56 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2017-08-29 21:32:56 +0900
commit1ee49e13e6b9721e8f0c08f871f8f6d3c2cc895a (patch)
treee0f6e6136b7d899cf7ae4154bdf5e1b44ae78023 /pkgs/tools
parent1799e1464722fabbd0473cb9e836caa21e905e66 (diff)
downloadnixlib-1ee49e13e6b9721e8f0c08f871f8f6d3c2cc895a.tar
nixlib-1ee49e13e6b9721e8f0c08f871f8f6d3c2cc895a.tar.gz
nixlib-1ee49e13e6b9721e8f0c08f871f8f6d3c2cc895a.tar.bz2
nixlib-1ee49e13e6b9721e8f0c08f871f8f6d3c2cc895a.tar.lz
nixlib-1ee49e13e6b9721e8f0c08f871f8f6d3c2cc895a.tar.xz
nixlib-1ee49e13e6b9721e8f0c08f871f8f6d3c2cc895a.tar.zst
nixlib-1ee49e13e6b9721e8f0c08f871f8f6d3c2cc895a.zip
fcitx-unikey: fix build
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/inputmethods/fcitx-engines/fcitx-unikey/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-unikey/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-unikey/default.nix
index b2cd71d1816e..4581f80a75e0 100644
--- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-unikey/default.nix
+++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-unikey/default.nix
@@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ cmake fcitx gettext pkgconfig ];
 
+  NIX_CFLAGS_COMPILE = "-Wno-narrowing";
+
   preInstall = ''
     substituteInPlace src/cmake_install.cmake \
       --replace ${fcitx} $out
@@ -28,4 +30,4 @@ stdenv.mkDerivation rec {
     maintainers   = with maintainers; [ ericsagnes ];
   };
 
-}
\ No newline at end of file
+}