summary refs log tree commit diff
path: root/pkgs/tools/networking/dhcp
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/dhcp
parent2fba99c47cfbf57b2ca1faeea7e57d4bac223194 (diff)
downloadnixpkgs-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar
nixpkgs-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.gz
nixpkgs-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.bz2
nixpkgs-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.lz
nixpkgs-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.xz
nixpkgs-5a25e3e7e9a27e7195289d954c24b42640bc9567.tar.zst
nixpkgs-5a25e3e7e9a27e7195289d954c24b42640bc9567.zip
dhcp: fix build with gcc10
Diffstat (limited to 'pkgs/tools/networking/dhcp')
-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 5222f731efb..f0d465a40e9 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}" ];