2016-10-06 07:51:21 +00:00
|
|
|
{ stdenv, fetchurl, openssl, cyrus_sasl, db, groff, libtool }:
|
2007-01-11 21:55:29 +00:00
|
|
|
|
2012-07-02 19:53:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-05 03:04:54 +00:00
|
|
|
name = "openldap-2.4.48";
|
2012-07-02 19:53:57 +00:00
|
|
|
|
2007-01-11 21:55:29 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://www.openldap.org/software/download/OpenLDAP/openldap-release/${name}.tgz";
|
2019-08-05 03:04:54 +00:00
|
|
|
sha256 = "0k87qra4kirb6xgja4q1jyw6piwb9v8b8g6gkxq4plawmgy3ylnr";
|
2007-01-11 21:55:29 +00:00
|
|
|
};
|
2012-07-02 19:53:57 +00:00
|
|
|
|
2015-10-18 13:07:03 +00:00
|
|
|
# TODO: separate "out" and "bin"
|
2016-09-01 09:07:23 +00:00
|
|
|
outputs = [ "out" "dev" "man" "devdoc" ];
|
2015-07-26 22:25:53 +00:00
|
|
|
|
2016-09-01 09:31:39 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-12-10 20:05:12 +00:00
|
|
|
nativeBuildInputs = [ groff ];
|
|
|
|
|
|
|
|
buildInputs = [ openssl cyrus_sasl db libtool ];
|
|
|
|
|
|
|
|
# Disable install stripping as it breaks cross-compiling.
|
|
|
|
# We strip binaries anyway in fixupPhase.
|
|
|
|
makeFlags= [ "STRIP=" ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-overlays"
|
|
|
|
"--disable-dependency-tracking" # speeds up one-time build
|
|
|
|
"--enable-modules"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--enable-crypt"
|
|
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"--with-yielding_select=yes"
|
|
|
|
"ac_cv_func_memcmp_working=yes"
|
|
|
|
] ++ stdenv.lib.optional (openssl == null) "--without-tls"
|
|
|
|
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
|
|
|
|
++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic";
|
2009-02-12 19:51:51 +00:00
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # needs a running LDAP server
|
|
|
|
|
2017-09-21 14:18:45 +00:00
|
|
|
installFlags = [ "sysconfdir=$(out)/etc" "localstatedir=$(out)/var" ];
|
2017-01-10 16:41:09 +00:00
|
|
|
|
2016-08-30 21:29:10 +00: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 16:02:18 +00:00
|
|
|
preFixup = ''
|
2015-10-18 13:07:03 +00:00
|
|
|
sed -e 's,-lsasl2,-L${cyrus_sasl.out}/lib -lsasl2,' \
|
|
|
|
-e 's,-lssl,-L${openssl.out}/lib -lssl,' \
|
2015-05-05 16:02:18 +00:00
|
|
|
-i $out/lib/libldap.la -i $out/lib/libldap_r.la
|
2016-09-01 09:31:39 +00:00
|
|
|
|
|
|
|
rm -rf $out/var
|
2016-08-30 21:29:10 +00:00
|
|
|
rm -r libraries/*/.libs
|
2015-05-05 16:02:18 +00:00
|
|
|
'';
|
|
|
|
|
2016-10-06 07:51:21 +00:00
|
|
|
postInstall = ''
|
2016-10-29 14:37:48 +00:00
|
|
|
chmod +x "$out"/lib/*.{so,dylib}
|
2016-10-06 07:51:21 +00:00
|
|
|
'';
|
|
|
|
|
2014-09-01 03:55:46 +00: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";
|
2018-08-17 22:03:01 +00:00
|
|
|
license = licenses.openldap;
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2014-09-01 03:55:46 +00:00
|
|
|
platforms = platforms.unix;
|
2009-02-12 19:51:51 +00:00
|
|
|
};
|
2007-01-11 21:55:29 +00:00
|
|
|
}
|