2014-01-31 12:05:37 -08:00
|
|
|
{stdenv, fetchurl, openssl, cyrus_sasl, db, groff}:
|
2007-01-11 13:55:29 -08:00
|
|
|
|
2012-07-02 12:53:57 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-04-10 05:10:00 -07:00
|
|
|
name = "openldap-2.4.39";
|
2012-07-02 12:53:57 -07:00
|
|
|
|
2007-01-11 13:55:29 -08:00
|
|
|
src = fetchurl {
|
2014-05-04 10:58:16 -07:00
|
|
|
url = "http://www.openldap.org/software/download/OpenLDAP/openldap-release/${name}.tgz";
|
2014-04-10 05:10:00 -07:00
|
|
|
sha256 = "19zq9dc7dl03wmqd11fbsdii1npyq1vlicl3nxbfygqh8xrwhrw2";
|
2007-01-11 13:55:29 -08:00
|
|
|
};
|
2012-07-02 12:53:57 -07:00
|
|
|
|
2014-01-31 12:05:37 -08:00
|
|
|
buildInputs = [ openssl cyrus_sasl db groff ];
|
2013-03-19 11:14:40 -07:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--enable-overlays"
|
2014-08-12 04:50:40 -07:00
|
|
|
"--disable-dependency-tracking" # speeds up one-time build
|
2013-03-19 11:14:40 -07:00
|
|
|
] ++ stdenv.lib.optional (openssl == null) "--without-tls"
|
|
|
|
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl";
|
2009-02-12 11:51:51 -08:00
|
|
|
|
2012-07-02 12:53:57 -07:00
|
|
|
dontPatchELF = 1; # !!!
|
2009-02-12 11:51:51 -08:00
|
|
|
|
|
|
|
meta = {
|
2012-07-02 12:53:57 -07:00
|
|
|
homepage = "http://www.openldap.org/";
|
2009-02-12 11:51:51 -08:00
|
|
|
description = "An open source implementation of the Lightweight Directory Access Protocol";
|
2014-01-28 09:11:00 -08:00
|
|
|
maintainers = stdenv.lib.maintainers.mornfall;
|
2009-02-12 11:51:51 -08:00
|
|
|
};
|
2007-01-11 13:55:29 -08:00
|
|
|
}
|