parent
ff2b57f957
commit
4638c52fb6
|
@ -1,13 +1,13 @@
|
||||||
{stdenv, fetchurl, openssl, pam, bzip2, zlib}:
|
{stdenv, fetchurl, openssl, pam, bzip2, zlib}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "dovecot-2.0.15";
|
name = "dovecot-2.1.7";
|
||||||
|
|
||||||
buildInputs = [openssl pam bzip2 zlib];
|
buildInputs = [openssl pam bzip2 zlib];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://dovecot.org/releases/2.0/dovecot-2.0.15.tar.gz;
|
url = "http://dovecot.org/releases/2.1/${name}.tar.gz";
|
||||||
sha256 = "03byp6alxxk65qfjjnqp6kcncs5cdiqgskx90nk9kcnynl1h6r33";
|
sha256 = "0lpldhs0nvy6rxabqkp14wzcwf1cx4jvnbp1xcm74izrzxhvrdym";
|
||||||
};
|
};
|
||||||
|
|
||||||
# It will hardcode this for /var/lib/dovecot.
|
# It will hardcode this for /var/lib/dovecot.
|
|
@ -5087,7 +5087,8 @@ 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 { };
|
dovecot_2 = callPackage ../servers/mail/dovecot/2.x.nix { };
|
||||||
|
dovecot_2_0 = pkgs.dovecot_2; # Actually, 2.1
|
||||||
|
|
||||||
ejabberd = callPackage ../servers/xmpp/ejabberd { };
|
ejabberd = callPackage ../servers/xmpp/ejabberd { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue