Merge pull request #33665 from 4z3/exim-ldap

exim: add optional LDAP support
wip/yesman
Franz Pletz 6 years ago committed by GitHub
commit 1c696c4edf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      pkgs/servers/mail/exim/default.nix

@ -1,4 +1,6 @@
{ coreutils, fetchurl, db, openssl, pcre, perl, pkgconfig, stdenv }:
{ coreutils, db, fetchurl, openldap, openssl, pcre, perl, pkgconfig, stdenv
, enableLDAP ? false
}:
stdenv.mkDerivation rec {
name = "exim-4.90";
@ -9,7 +11,8 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ coreutils db openssl pcre perl ];
buildInputs = [ coreutils db openssl pcre perl ]
++ stdenv.lib.optional enableLDAP openldap;
preBuild = ''
sed '
@ -33,6 +36,11 @@ stdenv.mkDerivation rec {
s:^# \(RM_COMMAND\)=.*:\1=${coreutils}/bin/rm:
s:^# \(TOUCH_COMMAND\)=.*:\1=${coreutils}/bin/touch:
s:^# \(PERL_COMMAND\)=.*:\1=${perl}/bin/perl:
${stdenv.lib.optionalString enableLDAP ''
s:^# \(LDAP_LIB_TYPE=OPENLDAP2\)$:\1:
s:^# \(LOOKUP_LDAP=yes\)$:\1:
s:^# \(LOOKUP_LIBS\)=.*:\1=-lldap:
''}
#/^\s*#.*/d
#/^\s*$/d
' < src/EDITME > Local/Makefile

Loading…
Cancel
Save