dovecot: drop obsolete versions 1.0.3 and 1.1.1
This commit is contained in:
parent
ca6b9bdf17
commit
f1bfc3055d
4 changed files with 3 additions and 42 deletions
|
@ -1,16 +0,0 @@
|
|||
{stdenv, fetchurl
|
||||
, openssl
|
||||
, pam
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "dovecot-1.0.3";
|
||||
|
||||
buildInputs = [openssl pam];
|
||||
|
||||
src = fetchurl {
|
||||
url = http://dovecot.org/releases/1.0/dovecot-1.0.3.tar.gz;
|
||||
sha256 = "14b3sbvj9xpm5mjwfavwrcwmzfdgian51ncspl8j83cd8j01jdjz";
|
||||
};
|
||||
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{stdenv, fetchurl
|
||||
, openssl
|
||||
, pam
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.1.1";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "dovecot-${version}";
|
||||
|
||||
buildInputs = [openssl pam];
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dovecot.org/releases/1.1/dovecot-${version}.tar.gz";
|
||||
sha256 = "0plzrzz07k0cylk9323gs9fzlv176y6nd6am660b6dch4p884sck";
|
||||
};
|
||||
|
||||
}
|
|
@ -20,8 +20,8 @@ stdenv.mkDerivation rec {
|
|||
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];
|
||||
maintainers = with stdenv.lib.maintainers; [viric simons];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
|
||||
|
||||
}
|
|
@ -5271,10 +5271,7 @@ let
|
|||
inherit stdenv lib dict;
|
||||
};
|
||||
|
||||
dovecot = callPackage ../servers/mail/dovecot/1.0.3.nix { };
|
||||
dovecot_1_1_1 = callPackage ../servers/mail/dovecot/1.1.1.nix { };
|
||||
dovecot_2 = callPackage ../servers/mail/dovecot/2.x.nix { };
|
||||
dovecot_2_0 = pkgs.dovecot_2; # Actually, 2.1
|
||||
dovecot = callPackage ../servers/mail/dovecot { };
|
||||
|
||||
ejabberd = callPackage ../servers/xmpp/ejabberd { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue