2015-08-18 11:35:27 -07: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 {
|
2016-03-31 23:51:37 -07:00
|
|
|
name = "openldap-2.4.44";
|
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";
|
2016-03-31 23:51:37 -07:00
|
|
|
sha256 = "0044p20hx07fwgw2mbwj1fkx04615hhs1qyx4mawj2bhqvrnppnp";
|
2007-01-11 13:55:29 -08:00
|
|
|
};
|
2012-07-02 12:53:57 -07:00
|
|
|
|
2015-10-18 06:07:03 -07:00
|
|
|
# TODO: separate "out" and "bin"
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" "man" "docdev" ];
|
2015-07-26 15:25:53 -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"
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-27 16:46:00 -08:00
|
|
|
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
|
|
|
|
++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic";
|
2009-02-12 11:51:51 -08:00
|
|
|
|
2016-08-30 14:29:10 -07:00
|
|
|
# 1. Fixup broken libtool
|
|
|
|
# 2. Libraries left in the build location confuse `patchelf --shrink-rpath`
|
|
|
|
# Delete these to let patchelf discover the right path instead.
|
|
|
|
# FIXME: that one can be removed when https://github.com/NixOS/patchelf/pull/98
|
|
|
|
# is in Nixpkgs patchelf.
|
2015-05-05 09:02:18 -07:00
|
|
|
preFixup = ''
|
2015-10-18 06:07:03 -07:00
|
|
|
sed -e 's,-lsasl2,-L${cyrus_sasl.out}/lib -lsasl2,' \
|
|
|
|
-e 's,-lssl,-L${openssl.out}/lib -lssl,' \
|
2015-05-05 09:02:18 -07:00
|
|
|
-i $out/lib/libldap.la -i $out/lib/libldap_r.la
|
2016-08-30 14:29:10 -07:00
|
|
|
rm -r libraries/*/.libs
|
2015-05-05 09:02:18 -07:00
|
|
|
'';
|
|
|
|
|
2014-08-31 20:55:46 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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-08-31 20:55:46 -07:00
|
|
|
maintainers = with maintainers; [ lovek323 mornfall ];
|
|
|
|
platforms = platforms.unix;
|
2009-02-12 11:51:51 -08:00
|
|
|
};
|
2007-01-11 13:55:29 -08:00
|
|
|
}
|