summary refs log tree commit diff
path: root/pkgs/development/tools/boomerang/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/boomerang/default.nix')
-rw-r--r--pkgs/development/tools/boomerang/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/tools/boomerang/default.nix b/pkgs/development/tools/boomerang/default.nix
index b37ab9a2d3f..0e67ab90c52 100644
--- a/pkgs/development/tools/boomerang/default.nix
+++ b/pkgs/development/tools/boomerang/default.nix
@@ -14,6 +14,11 @@ mkDerivation rec {
     sha256 = "0xncdp0z8ry4lkzmvbj5d7hlzikivghpwicgywlv47spgh8ny0ix";
   };
 
+  # Boomerang usually compiles with -Werror but has not been updated for newer
+  # compilers. Disable -Werror for now. Consider trying to remove this when
+  # updating this derivation.
+  NIX_CFLAGS_COMPILE = "-Wno-error";
+
   nativeBuildInputs = [ cmake bison flex ];
   buildInputs = [ qtbase capstone ];
   patches = [