summary refs log tree commit diff
path: root/pkgs/servers/mail/dovecot/2.x.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/mail/dovecot/2.x.nix')
-rw-r--r--pkgs/servers/mail/dovecot/2.x.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/servers/mail/dovecot/2.x.nix b/pkgs/servers/mail/dovecot/2.x.nix
deleted file mode 100644
index 294a58b4f24b..000000000000
--- a/pkgs/servers/mail/dovecot/2.x.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{stdenv, fetchurl, openssl, pam, bzip2, zlib}:
-
-stdenv.mkDerivation rec {
-  name = "dovecot-2.1.7";
-
-  buildInputs = [openssl pam bzip2 zlib];
-
-  src = fetchurl {
-    url = "http://dovecot.org/releases/2.1/${name}.tar.gz";
-    sha256 = "0lpldhs0nvy6rxabqkp14wzcwf1cx4jvnbp1xcm74izrzxhvrdym";
-  };
-
-  # It will hardcode this for /var/lib/dovecot.
-  # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211
-  configureFlags = [ "--localstatedir=/var" ];
-
-  meta = {
-    homepage = http://dovecot.org/;
-    description = "Open source IMAP and POP3 email server written with security primarily in mind";
-    maintainers = with stdenv.lib.maintainers; [viric];
-    platforms = with stdenv.lib.platforms; linux;
-  };
-  
-}