summary refs log tree commit diff
path: root/pkgs/tools/networking/ntopng
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-04-22 22:36:35 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-04-26 21:55:04 -0400
commit724e833ea2a9d1b16f7289e1244d0d7ff56d027b (patch)
tree7081889ff591cca1fb947c4c051b91d73b4eaf75 /pkgs/tools/networking/ntopng
parentd1f988ca3c22baf0e637eb1f082a49cad2c4ea31 (diff)
treewide: disable -Werror for llvm 7
Some of these have errors on newest llvm. It’s easiest to just add
-Wno-error in these cases.
Diffstat (limited to 'pkgs/tools/networking/ntopng')
-rw-r--r--pkgs/tools/networking/ntopng/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/ntopng/default.nix b/pkgs/tools/networking/ntopng/default.nix
index b307a8f6f1319..b1e1bfcdd65e1 100644
--- a/pkgs/tools/networking/ntopng/default.nix
+++ b/pkgs/tools/networking/ntopng/default.nix
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
     sed 's|LIBS += -lstdc++.6||' -i Makefile
   '';
 
-  NIX_CFLAGS_COMPILE = [ "-fpermissive" ];
+  NIX_CFLAGS_COMPILE = [ "-fpermissive" "-Wno-error=reserved-user-defined-literal" ];
 
   meta = with stdenv.lib; {
     description = "High-speed web-based traffic analysis and flow collection tool";