summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-10-07 18:55:07 +0200
committerPeter Simons <simons@cryp.to>2012-10-07 18:55:41 +0200
commit08266083282728d8366493fd5843ca3e262b7d6d (patch)
tree5c73cbe48e4eae9cce184e79f74b039cd2bb11ed /pkgs/servers
parent4454e45955e665f955e1176541bb8d195dfcb40c (diff)
downloadnixlib-08266083282728d8366493fd5843ca3e262b7d6d.tar
nixlib-08266083282728d8366493fd5843ca3e262b7d6d.tar.gz
nixlib-08266083282728d8366493fd5843ca3e262b7d6d.tar.bz2
nixlib-08266083282728d8366493fd5843ca3e262b7d6d.tar.lz
nixlib-08266083282728d8366493fd5843ca3e262b7d6d.tar.xz
nixlib-08266083282728d8366493fd5843ca3e262b7d6d.tar.zst
nixlib-08266083282728d8366493fd5843ca3e262b7d6d.zip
spamassassin: don't pass 'IOSocketInet6'
Adding that package as a build input makes SpamAssassin print "function
re-defined" warnings at run-time.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/mail/spamassassin/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/mail/spamassassin/default.nix b/pkgs/servers/mail/spamassassin/default.nix
index 0e623f7ac040..dc316267e6cc 100644
--- a/pkgs/servers/mail/spamassassin/default.nix
+++ b/pkgs/servers/mail/spamassassin/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, buildPerlPackage, perl, HTMLParser, NetDNS, NetAddrIP, DBFile
-, HTTPDate, MailDKIM, LWP, IOSocketSSL, IOSocketInet6, makeWrapper, gnupg1
+, HTTPDate, MailDKIM, LWP, IOSocketSSL, makeWrapper, gnupg1
 }:
 
 # TODO: Add the Perl modules ...
@@ -21,7 +21,7 @@ buildPerlPackage rec {
   };
 
   buildInputs = [ makeWrapper HTMLParser NetDNS NetAddrIP DBFile HTTPDate MailDKIM
-    LWP IOSocketSSL IOSocketInet6 ];
+    LWP IOSocketSSL ];
 
   # Enabling 'taint' mode is desirable, but that flag disables support
   # for the PERL5LIB environment variable. Needs further investigation.