about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorluc65r <lucas@ransan.tk>2020-06-08 14:21:49 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-12-28 08:43:31 +0100
commit5a25e3e7e9a27e7195289d954c24b42640bc9567 (patch)
tree41dadb339d750d3e8c95a7e7defe25d86f069497 /pkgs/tools/networking
parent2fba99c47cfbf57b2ca1faeea7e57d4bac223194 (diff)
downloadnixlib-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar
nixlib-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.gz
nixlib-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.bz2
nixlib-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.lz
nixlib-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.xz
nixlib-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.zst
nixlib-5a25e3e7e9a27e7195289d954c24b42640bc9567.zip
dhcp: fix build with gcc10
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/dhcp/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/networking/dhcp/default.nix b/pkgs/tools/networking/dhcp/default.nix
index 5222f731efb9..f0d465a40e9d 100644
--- a/pkgs/tools/networking/dhcp/default.nix
+++ b/pkgs/tools/networking/dhcp/default.nix
@@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
     "-Wno-error=format-truncation"
     "-Wno-error=stringop-truncation"
     "-Wno-error=format-overflow"
+    "-Wno-error=stringop-overflow=8"
   ];
 
   installFlags = [ "DESTDIR=\${out}" ];