forked from mirrors/nixpkgs
Adding a newer dovecot
svn path=/nixpkgs/trunk/; revision=30025
This commit is contained in:
parent
6582f602c9
commit
621e87f821
20
pkgs/servers/mail/dovecot/2.0.nix
Normal file
20
pkgs/servers/mail/dovecot/2.0.nix
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -4873,6 +4873,7 @@ let
|
||||||
|
|
||||||
dovecot = callPackage ../servers/mail/dovecot { };
|
dovecot = callPackage ../servers/mail/dovecot { };
|
||||||
dovecot_1_1_1 = callPackage ../servers/mail/dovecot/1.1.1.nix { };
|
dovecot_1_1_1 = callPackage ../servers/mail/dovecot/1.1.1.nix { };
|
||||||
|
dovecot_2_0 = callPackage ../servers/mail/dovecot/2.0.nix { };
|
||||||
|
|
||||||
ejabberd = callPackage ../servers/xmpp/ejabberd {
|
ejabberd = callPackage ../servers/xmpp/ejabberd {
|
||||||
erlang = erlangR13B ;
|
erlang = erlangR13B ;
|
||||||
|
|
Loading…
Reference in a new issue