dovecot: 2.2.33.2 -> 2.3.0

This commit is contained in:
Franz Pletz 2018-01-28 04:37:29 +01:00
parent f8968a2a79
commit 646a2e9a6f
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,6 +1,6 @@
{ stdenv, lib, fetchurl, perl, pkgconfig, systemd, openssl { stdenv, lib, fetchurl, perl, pkgconfig, systemd, openssl
, bzip2, zlib, inotify-tools, pam, libcap , bzip2, zlib, lz4, inotify-tools, pam, libcap
, clucene_core_2, icu, openldap , clucene_core_2, icu, openldap, libsodium, libstemmer
# Auth modules # Auth modules
, withMySQL ? false, mysql , withMySQL ? false, mysql
, withPgSQL ? false, postgresql , withPgSQL ? false, postgresql
@ -8,18 +8,19 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "dovecot-2.2.33.2"; name = "dovecot-2.3.0";
nativeBuildInputs = [ perl pkgconfig ]; nativeBuildInputs = [ perl pkgconfig ];
buildInputs = [ openssl bzip2 zlib clucene_core_2 icu openldap ] buildInputs =
[ openssl bzip2 zlib lz4 clucene_core_2 icu openldap libsodium libstemmer ]
++ lib.optionals (stdenv.isLinux) [ systemd pam libcap inotify-tools ] ++ lib.optionals (stdenv.isLinux) [ systemd pam libcap inotify-tools ]
++ lib.optional withMySQL mysql.connector-c ++ lib.optional withMySQL mysql.connector-c
++ lib.optional withPgSQL postgresql ++ lib.optional withPgSQL postgresql
++ lib.optional withSQLite sqlite; ++ lib.optional withSQLite sqlite;
src = fetchurl { src = fetchurl {
url = "http://dovecot.org/releases/2.2/${name}.tar.gz"; url = "http://dovecot.org/releases/2.3/${name}.tar.gz";
sha256 = "117f9i62liz2pm96zi2lpldzlj2knzj7g410zhifwmlsc1w3n7py"; sha256 = "10c5myzgys866c3x6jdr1s9x9pqnjd5vpyz8z384sph21m3wnq6y";
}; };
preConfigure = '' preConfigure = ''
@ -58,6 +59,7 @@ stdenv.mkDerivation rec {
"--with-ssl=openssl" "--with-ssl=openssl"
"--with-zlib" "--with-zlib"
"--with-bzlib" "--with-bzlib"
"--with-lz4"
"--with-ldap" "--with-ldap"
"--with-lucene" "--with-lucene"
"--with-icu" "--with-icu"
@ -68,9 +70,9 @@ stdenv.mkDerivation rec {
++ lib.optional withSQLite "--with-sqlite"; ++ lib.optional withSQLite "--with-sqlite";
meta = { meta = {
homepage = http://dovecot.org/; homepage = https://dovecot.org/;
description = "Open source IMAP and POP3 email server written with security primarily in mind"; description = "Open source IMAP and POP3 email server written with security primarily in mind";
maintainers = with stdenv.lib.maintainers; [viric peti rickynils]; maintainers = with stdenv.lib.maintainers; [ viric peti rickynils fpletz ];
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
}; };
} }