2014-01-31 21:05:37 +01:00
|
|
|
{stdenv, fetchurl, openssl, cyrus_sasl, db, groff}:
|
2007-01-11 22:55:29 +01:00
|
|
|
|
2012-07-02 21:53:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-04 11:34:13 +01:00
|
|
|
name = "openldap-2.4.38";
|
2012-07-02 21:53:57 +02:00
|
|
|
|
2007-01-11 22:55:29 +01:00
|
|
|
src = fetchurl {
|
2012-07-02 21:53:57 +02:00
|
|
|
url = "ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/${name}.tgz";
|
2014-02-04 11:34:13 +01:00
|
|
|
sha256 = "1l8zng86alhcmmmw09r1c4dzl7yvk6dy5fq9zia96pgck4srl848";
|
2007-01-11 22:55:29 +01:00
|
|
|
};
|
2012-07-02 21:53:57 +02:00
|
|
|
|
2014-01-31 21:05:37 +01:00
|
|
|
buildInputs = [ openssl cyrus_sasl db groff ];
|
2013-03-19 19:14:40 +01:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--enable-overlays"
|
|
|
|
] ++ stdenv.lib.optional (openssl == null) "--without-tls"
|
|
|
|
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl";
|
2009-02-12 20:51:51 +01:00
|
|
|
|
2012-07-02 21:53:57 +02:00
|
|
|
dontPatchELF = 1; # !!!
|
2009-02-12 20:51:51 +01:00
|
|
|
|
|
|
|
meta = {
|
2012-07-02 21:53:57 +02:00
|
|
|
homepage = "http://www.openldap.org/";
|
2009-02-12 20:51:51 +01:00
|
|
|
description = "An open source implementation of the Lightweight Directory Access Protocol";
|
2014-01-28 18:11:00 +01:00
|
|
|
maintainers = stdenv.lib.maintainers.mornfall;
|
2009-02-12 20:51:51 +01:00
|
|
|
};
|
2007-01-11 22:55:29 +01:00
|
|
|
}
|