about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-02-01 04:49:43 +0100
committerAndreas Rammhold <andreas@rammhold.de>2018-02-01 04:51:07 +0100
commit4dd92c4466b109f721790ac8ea9bda8694e73a2d (patch)
treeae034c32ec02e6d3437302191bee6c1bc92bf563 /pkgs
parente27e02653991c297ba174de053f60a0ccded7baf (diff)
downloadnixlib-4dd92c4466b109f721790ac8ea9bda8694e73a2d.tar
nixlib-4dd92c4466b109f721790ac8ea9bda8694e73a2d.tar.gz
nixlib-4dd92c4466b109f721790ac8ea9bda8694e73a2d.tar.bz2
nixlib-4dd92c4466b109f721790ac8ea9bda8694e73a2d.tar.lz
nixlib-4dd92c4466b109f721790ac8ea9bda8694e73a2d.tar.xz
nixlib-4dd92c4466b109f721790ac8ea9bda8694e73a2d.tar.zst
nixlib-4dd92c4466b109f721790ac8ea9bda8694e73a2d.zip
dovecot_antispam: removed since upstream deprecated the package [1] and it fails to build anyway
[1] https://wiki2.dovecot.org/Plugins/Antispam
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/mail/dovecot/plugins/antispam/default.nix34
-rw-r--r--pkgs/top-level/all-packages.nix1
2 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/servers/mail/dovecot/plugins/antispam/default.nix b/pkgs/servers/mail/dovecot/plugins/antispam/default.nix
deleted file mode 100644
index 1a1ba1ad4486..000000000000
--- a/pkgs/servers/mail/dovecot/plugins/antispam/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv, fetchhg, autoconf, automake, dovecot, openssl }:
-
-stdenv.mkDerivation {
-  name = "dovecot-antispam-20130429";
-
-  src = fetchhg {
-    url = "http://hg.dovecot.org/dovecot-antispam-plugin/";
-    rev = "5ebc6aae4d7c";
-    sha256 = "181i79c9sf3a80mgmycfq1f77z7fpn3j2s0qiddrj16h3yklf4gv";
-  };
-
-  buildInputs = [ dovecot openssl ];
-  nativeBuildInputs = [ autoconf automake ];
-
-  preConfigure = ''
-    ./autogen.sh
-    # Ugly hack; any ideas?
-    sed "s,^dovecot_moduledir=.*,dovecot_moduledir=$out/lib/dovecot," ${dovecot}/lib/dovecot/dovecot-config > dovecot-config
-  '';
-
-  configureFlags = [
-    "--with-dovecot=."
-  ];
-
-  enableParallelBuilding = true;
-
-  meta = with stdenv.lib; {
-    homepage = http://wiki2.dovecot.org/Plugins/Antispam;
-    description = "An antispam plugin for the Dovecot IMAP server";
-    license = licenses.gpl2;
-    maintainers = with maintainers; [ abbradar ];
-    platforms = platforms.linux;
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d89ab305966f..c35c1c60b808 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -11901,7 +11901,6 @@ with pkgs;
 
   dovecot = callPackage ../servers/mail/dovecot { };
   dovecot_pigeonhole = callPackage ../servers/mail/dovecot/plugins/pigeonhole { };
-  dovecot_antispam = callPackage ../servers/mail/dovecot/plugins/antispam { };
 
   dspam = callPackage ../servers/mail/dspam {
     inherit (perlPackages) NetSMTP;