opensmtpd: 5.9.2p1 -> 6.0.0p1 (#18629)

Also change to https src.url.

Changelog at https://www.opensmtpd.org/announces/release-6.0.0.txt

In particular, note that
- logging format has been reworked so scripts that consume opensmtpd
  logs may need updating
- dhparams option has been removed
This commit is contained in:
Joachim F 2016-09-15 17:19:51 +02:00 committed by obadz
parent ffbdc07a0d
commit 2db487e6bf

View File

@ -11,14 +11,14 @@
stdenv.mkDerivation rec {
name = "opensmtpd-${version}";
version = "5.9.2p1";
version = "6.0.0p1";
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ libasr libevent zlib openssl db pam ];
src = fetchurl {
url = "http://www.opensmtpd.org/archives/${name}.tar.gz";
sha256 = "07d7f1m5sxyz6mkk228rcm7fsf7350994ayvmhgph333q5rz48im";
url = "https://www.opensmtpd.org/archives/${name}.tar.gz";
sha256 = "07gq21bx62w367512d0bbp9hm3pfgqh3kksg2by7n574kxc7jzm9";
};
patches = [ ./proc_path.diff ];