summary refs log tree commit diff
path: root/pkgs/servers/mail/dovecot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/mail/dovecot/default.nix')
-rw-r--r--pkgs/servers/mail/dovecot/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix
new file mode 100644
index 00000000000..675e2ae7479
--- /dev/null
+++ b/pkgs/servers/mail/dovecot/default.nix
@@ -0,0 +1,27 @@
+{stdenv, fetchurl, openssl, pam, bzip2, zlib, inotifyTools, openldap}:
+
+stdenv.mkDerivation rec {
+  name = "dovecot-2.1.8";
+
+  buildInputs = [openssl pam bzip2 zlib inotifyTools openldap];
+
+  src = fetchurl {
+    url = "http://dovecot.org/releases/2.1/${name}.tar.gz";
+    sha256 = "03801f4agcwdpqyg6dfxlga3750pnhk4gaf8m7sjq1qmz2277028";
+  };
+
+  # It will hardcode this for /var/lib/dovecot.
+  # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211
+  configureFlags = [
+    "--localstatedir=/var"
+    "--with-ldap"
+  ];
+
+  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 simons];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+
+}