nixpkgs/pkgs/servers/mail/dovecot/2.0.nix
Lluís Batlle i Rossell 621e87f821 Adding a newer dovecot
svn path=/nixpkgs/trunk/; revision=30025
2011-10-25 20:34:19 +00:00

21 lines
539 B
Nix

{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;
};
}