summary refs log tree commit diff
path: root/pkgs/servers/mail
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-10-25 20:34:19 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-10-25 20:34:19 +0000
commit621e87f821f9f5d7af243441d7816d196977857e (patch)
tree60ef396a2fb3dddac77785996ab73574a9ac0e83 /pkgs/servers/mail
parent6582f602c994784a25afbc750ac9d478b7c3a8d4 (diff)
downloadnixlib-621e87f821f9f5d7af243441d7816d196977857e.tar
nixlib-621e87f821f9f5d7af243441d7816d196977857e.tar.gz
nixlib-621e87f821f9f5d7af243441d7816d196977857e.tar.bz2
nixlib-621e87f821f9f5d7af243441d7816d196977857e.tar.lz
nixlib-621e87f821f9f5d7af243441d7816d196977857e.tar.xz
nixlib-621e87f821f9f5d7af243441d7816d196977857e.tar.zst
nixlib-621e87f821f9f5d7af243441d7816d196977857e.zip
Adding a newer dovecot
svn path=/nixpkgs/trunk/; revision=30025
Diffstat (limited to 'pkgs/servers/mail')
-rw-r--r--pkgs/servers/mail/dovecot/2.0.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/servers/mail/dovecot/2.0.nix b/pkgs/servers/mail/dovecot/2.0.nix
new file mode 100644
index 000000000000..a2278533dad8
--- /dev/null
+++ b/pkgs/servers/mail/dovecot/2.0.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, openssl, pam}:
+
+stdenv.mkDerivation {
+  name = "dovecot-2.0.15";
+
+  buildInputs = [openssl pam];
+
+  src = fetchurl {
+    url = http://dovecot.org/releases/2.0/dovecot-2.0.15.tar.gz;
+    sha256 = "03byp6alxxk65qfjjnqp6kcncs5cdiqgskx90nk9kcnynl1h6r33";
+  };
+
+  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;
+  };
+  
+}