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