Merge pull request #19076 from periklis/topic_dovecot

dovecot: enable darwin build
This commit is contained in:
Peter Simons 2016-09-29 15:45:28 +02:00 committed by GitHub
commit d286a68887
1 changed files with 2 additions and 1 deletions

View File

@ -62,6 +62,7 @@ stdenv.mkDerivation rec {
"--with-lucene" "--with-lucene"
"--with-icu" "--with-icu"
] ++ lib.optional (stdenv.isLinux) "--with-systemdsystemunitdir=$(out)/etc/systemd/system" ] ++ lib.optional (stdenv.isLinux) "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
++ lib.optional (stdenv.isDarwin) "--enable-static"
++ lib.optional withMySQL "--with-mysql" ++ lib.optional withMySQL "--with-mysql"
++ lib.optional withPgSQL "--with-pgsql" ++ lib.optional withPgSQL "--with-pgsql"
++ lib.optional withSQLite "--with-sqlite"; ++ lib.optional withSQLite "--with-sqlite";
@ -70,6 +71,6 @@ stdenv.mkDerivation rec {
homepage = "http://dovecot.org/"; homepage = "http://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];
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.unix;
}; };
} }