dovecot22: add options for building auth modules

This commit is contained in:
Nikolay Amiantov 2016-01-09 19:25:05 +03:00
parent 97e3c42523
commit cc0e255ab9

View File

@ -1,11 +1,21 @@
{ stdenv, fetchurl, perl, systemd, openssl, pam, bzip2, zlib, openldap { stdenv, lib, fetchurl, perl, pkgconfig, systemd, openssl
, inotify-tools, clucene_core_2, sqlite }: , bzip2, zlib, inotify-tools, pam, libcap
, clucene_core_2, icu, openldap
# Auth modules
, withMySQL ? false, libmysql
, withPgSQL ? false, postgresql
, withSQLite ? true, sqlite
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "dovecot-2.2.21"; name = "dovecot-2.2.21";
buildInputs = [ perl openssl bzip2 zlib openldap clucene_core_2 sqlite ] nativeBuildInputs = [ perl pkgconfig ];
++ stdenv.lib.optionals (stdenv.isLinux) [ systemd pam inotify-tools ]; buildInputs = [ openssl bzip2 zlib clucene_core_2 icu openldap ]
++ lib.optionals (stdenv.isLinux) [ systemd pam libcap inotify-tools ]
++ lib.optional withMySQL libmysql
++ lib.optional withPgSQL postgresql
++ lib.optional withSQLite sqlite;
src = fetchurl { src = fetchurl {
url = "http://dovecot.org/releases/2.2/${name}.tar.gz"; url = "http://dovecot.org/releases/2.2/${name}.tar.gz";
@ -13,11 +23,10 @@ stdenv.mkDerivation rec {
}; };
preConfigure = '' preConfigure = ''
substituteInPlace src/config/settings-get.pl --replace \ patchShebangs src/config/settings-get.pl
"/usr/bin/env perl" "${perl}/bin/perl"
''; '';
postInstall = stdenv.lib.optionalString stdenv.isDarwin '' postInstall = lib.optionalString stdenv.isDarwin ''
install_name_tool -change libclucene-shared.1.dylib \ install_name_tool -change libclucene-shared.1.dylib \
${clucene_core_2}/lib/libclucene-shared.1.dylib \ ${clucene_core_2}/lib/libclucene-shared.1.dylib \
$out/lib/dovecot/lib21_fts_lucene_plugin.so $out/lib/dovecot/lib21_fts_lucene_plugin.so
@ -28,9 +37,8 @@ stdenv.mkDerivation rec {
patches = [ patches = [
# Make dovecot look for plugins in /etc/dovecot/modules # Make dovecot look for plugins in /etc/dovecot/modules
# so we can symlink plugins from several packages there # so we can symlink plugins from several packages there.
# The symlinking needs to be done in NixOS, as part of the # The symlinking needs to be done in NixOS.
# dovecot service start-up
./2.2.x-module_dir.patch ./2.2.x-module_dir.patch
]; ];
@ -39,14 +47,16 @@ stdenv.mkDerivation rec {
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211 # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211
"--localstatedir=/var" "--localstatedir=/var"
"--with-ldap" "--with-ldap"
"--with-lucene"
"--with-ssl=openssl" "--with-ssl=openssl"
"--with-sqlite"
"--with-zlib" "--with-zlib"
"--with-bzlib" "--with-bzlib"
] ++ stdenv.lib.optionals (stdenv.isLinux) [ "--with-ldap"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" "--with-lucene"
]; "--with-icu"
] ++ lib.optional (stdenv.isLinux) "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
++ lib.optional withMySQL "--with-mysql"
++ lib.optional withPgSQL "--with-pgsql"
++ lib.optional withSQLite "--with-sqlite";
meta = { meta = {
homepage = "http://dovecot.org/"; homepage = "http://dovecot.org/";