summary refs log tree commit diff
path: root/pkgs/servers/mail
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-11-02 18:49:25 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2019-11-02 19:50:49 +0100
commitf60914ac2c01504fdbff4f9139a69bea4b9fa74c (patch)
tree985536d71b705607bbd27be7d27be95453cd7a14 /pkgs/servers/mail
parent74554ab3b23d8cd7881d49b40cbbca4582d870d6 (diff)
downloadnixpkgs-f60914ac2c01504fdbff4f9139a69bea4b9fa74c.tar
nixpkgs-f60914ac2c01504fdbff4f9139a69bea4b9fa74c.tar.gz
nixpkgs-f60914ac2c01504fdbff4f9139a69bea4b9fa74c.tar.bz2
nixpkgs-f60914ac2c01504fdbff4f9139a69bea4b9fa74c.tar.lz
nixpkgs-f60914ac2c01504fdbff4f9139a69bea4b9fa74c.tar.xz
nixpkgs-f60914ac2c01504fdbff4f9139a69bea4b9fa74c.tar.zst
nixpkgs-f60914ac2c01504fdbff4f9139a69bea4b9fa74c.zip
archiveopteryx: fix build with gcc9
Diffstat (limited to 'pkgs/servers/mail')
-rw-r--r--pkgs/servers/mail/archiveopteryx/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/servers/mail/archiveopteryx/default.nix b/pkgs/servers/mail/archiveopteryx/default.nix
index 5a318c311af..3443a508aea 100644
--- a/pkgs/servers/mail/archiveopteryx/default.nix
+++ b/pkgs/servers/mail/archiveopteryx/default.nix
@@ -20,10 +20,11 @@ stdenv.mkDerivation rec {
     sed -i 's:READMEDIR = $(PREFIX):READMEDIR = '$out'/share/doc/archiveopteryx:' ./Jamsettings
   '';
 
-  # fix build on gcc7
+  # fix build on gcc7+
   NIX_CFLAGS_COMPILE = [
     "-Wno-error=builtin-declaration-mismatch"
     "-Wno-error=implicit-fallthrough"
+    "-Wno-error=deprecated-copy"
   ];
 
   buildPhase = ''jam "-j$NIX_BUILD_CORES" '';