2016-10-06 09:51:21 +02:00
|
|
|
{ stdenv, fetchurl, openssl, cyrus_sasl, db, groff, libtool }:
|
2007-01-11 22:55:29 +01:00
|
|
|
|
2012-07-02 21:53:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-23 02:20:03 +02:00
|
|
|
name = "openldap-2.4.45";
|
2012-07-02 21:53:57 +02:00
|
|
|
|
2007-01-11 22:55:29 +01:00
|
|
|
src = fetchurl {
|
2014-05-04 19:58:16 +02:00
|
|
|
url = "http://www.openldap.org/software/download/OpenLDAP/openldap-release/${name}.tgz";
|
2017-06-23 02:20:03 +02:00
|
|
|
sha256 = "091qvwk5dkcpp17ziabcnh3rg3m7qwzw2pihfcd1d5fdxgywzmnd";
|
2007-01-11 22:55:29 +01:00
|
|
|
};
|
2012-07-02 21:53:57 +02:00
|
|
|
|
2017-08-04 23:15:20 +02:00
|
|
|
patches = [
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://bz-attachments.freebsd.org/attachment.cgi?id=183223";
|
|
|
|
sha256 = "1fiy457hrxmydybjlvn8ypzlavz22cz31q2rga07n32dh4x759r3";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
patchFlags = [ "-p0" ];
|
|
|
|
|
2015-10-18 15:07:03 +02:00
|
|
|
# TODO: separate "out" and "bin"
|
2016-09-01 11:07:23 +02:00
|
|
|
outputs = [ "out" "dev" "man" "devdoc" ];
|
2015-07-27 00:25:53 +02:00
|
|
|
|
2016-09-01 11:31:39 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-10-06 09:51:21 +02:00
|
|
|
buildInputs = [ openssl cyrus_sasl db groff libtool ];
|
2013-03-19 19:14:40 +01:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--enable-overlays"
|
2014-08-12 13:50:40 +02:00
|
|
|
"--disable-dependency-tracking" # speeds up one-time build
|
2016-10-06 09:51:21 +02:00
|
|
|
"--enable-modules"
|
2017-01-10 17:41:09 +01:00
|
|
|
"--sysconfdir=/etc"
|
2017-09-21 16:18:45 +02:00
|
|
|
"--localstatedir=/var"
|
2017-08-08 11:48:49 +02:00
|
|
|
"--enable-crypt"
|
2013-03-19 19:14:40 +01: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-28 01:46:00 +01:00
|
|
|
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
|
|
|
|
++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic";
|
2009-02-12 20:51:51 +01:00
|
|
|
|
2017-09-21 16:18:45 +02:00
|
|
|
installFlags = [ "sysconfdir=$(out)/etc" "localstatedir=$(out)/var" ];
|
2017-01-10 17:41:09 +01:00
|
|
|
|
2016-08-30 23:29:10 +02: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 18:02:18 +02:00
|
|
|
preFixup = ''
|
2015-10-18 15:07:03 +02:00
|
|
|
sed -e 's,-lsasl2,-L${cyrus_sasl.out}/lib -lsasl2,' \
|
|
|
|
-e 's,-lssl,-L${openssl.out}/lib -lssl,' \
|
2015-05-05 18:02:18 +02:00
|
|
|
-i $out/lib/libldap.la -i $out/lib/libldap_r.la
|
2016-09-01 11:31:39 +02:00
|
|
|
|
|
|
|
rm -rf $out/var
|
2016-08-30 23:29:10 +02:00
|
|
|
rm -r libraries/*/.libs
|
2015-05-05 18:02:18 +02:00
|
|
|
'';
|
|
|
|
|
2016-10-06 09:51:21 +02:00
|
|
|
postInstall = ''
|
2016-10-29 16:37:48 +02:00
|
|
|
chmod +x "$out"/lib/*.{so,dylib}
|
2016-10-06 09:51:21 +02:00
|
|
|
'';
|
|
|
|
|
2014-09-01 05:55:46 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.openldap.org/;
|
2009-02-12 20:51:51 +01:00
|
|
|
description = "An open source implementation of the Lightweight Directory Access Protocol";
|
2018-01-17 06:13:23 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2014-09-01 05:55:46 +02:00
|
|
|
platforms = platforms.unix;
|
2009-02-12 20:51:51 +01:00
|
|
|
};
|
2007-01-11 22:55:29 +01:00
|
|
|
}
|