nixpkgs/pkgs/development/libraries/openldap/default.nix

86 lines
2.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, cyrus_sasl, db, groff, libtool }:
2012-07-02 20:53:57 +01:00
stdenv.mkDerivation rec {
pname = "openldap";
version = "2.4.56";
2012-07-02 20:53:57 +01:00
src = fetchurl {
url = "https://www.openldap.org/software/download/OpenLDAP/openldap-release/${pname}-${version}.tgz";
sha256 = "1q0m26kbab96r73y0dll0c36411kvfillal0i75kngy9cc1hwli5";
};
2012-07-02 20:53:57 +01:00
# TODO: separate "out" and "bin"
outputs = [ "out" "dev" "man" "devdoc" ];
2015-07-26 23:25:53 +01: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="
"prefix=$(out)"
"moduledir=$(out)/lib/modules"
2020-06-25 01:38:06 +01:00
"CC=${stdenv.cc.targetPrefix}cc"
];
2018-12-10 20:05:12 +00:00
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";
postBuild = ''
2020-06-19 23:32:06 +01:00
make $makeFlags CC=$CC -C contrib/slapd-modules/passwd/sha2
make $makeFlags CC=$CC -C contrib/slapd-modules/passwd/pbkdf2
'';
doCheck = false; # needs a running LDAP server
installFlags = [
"sysconfdir=$(out)/etc"
"localstatedir=$(out)/var"
"moduledir=$(out)/lib/modules"
];
# 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 17:02:18 +01:00
preFixup = ''
sed -e 's,-lsasl2,-L${cyrus_sasl.out}/lib -lsasl2,' \
-e 's,-lssl,-L${openssl.out}/lib -lssl,' \
2015-05-05 17:02:18 +01:00
-i $out/lib/libldap.la -i $out/lib/libldap_r.la
rm -rf $out/var
rm -r libraries/*/.libs
rm -r contrib/slapd-modules/passwd/*/.libs
2015-05-05 17:02:18 +01:00
'';
postInstall = ''
make $installFlags install -C contrib/slapd-modules/passwd/sha2
make $installFlags install -C contrib/slapd-modules/passwd/pbkdf2
chmod +x "$out"/lib/*.{so,dylib}
'';
2014-09-01 04:55:46 +01:00
meta = with stdenv.lib; {
homepage = "https://www.openldap.org/";
description = "An open source implementation of the Lightweight Directory Access Protocol";
2018-08-17 23:03:01 +01:00
license = licenses.openldap;
maintainers = with maintainers; [ lovek323 ];
2014-09-01 04:55:46 +01:00
platforms = platforms.unix;
};
}