summary refs log tree commit diff
path: root/pkgs/tools/system/vboot_reference/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/system/vboot_reference/default.nix')
-rw-r--r--pkgs/tools/system/vboot_reference/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/system/vboot_reference/default.nix b/pkgs/tools/system/vboot_reference/default.nix
index 0bf8a7e85dc..ab78551e4fc 100644
--- a/pkgs/tools/system/vboot_reference/default.nix
+++ b/pkgs/tools/system/vboot_reference/default.nix
@@ -19,6 +19,9 @@ stdenv.mkDerivation rec {
 
   patches = [ ./dont_static_link.patch ];
 
+  # fix build with gcc9
+  NIX_CFLAGS_COMPILE = [ "-Wno-error" ];
+
   postPatch = ''
     substituteInPlace Makefile \
       --replace "ar qc" '${stdenv.cc.bintools.targetPrefix}ar qc'