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

59 lines
1.9 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, cyrus_sasl, db, groff, libtool }:
2012-07-02 19:53:57 +00:00
stdenv.mkDerivation rec {
name = "openldap-2.4.46";
2012-07-02 19:53:57 +00:00
src = fetchurl {
url = "https://www.openldap.org/software/download/OpenLDAP/openldap-release/${name}.tgz";
sha256 = "0bab1km8f2nan1x0zgwliknbxg0zlf2pafxrr867kblrdfwdr44s";
};
2012-07-02 19:53:57 +00:00
# TODO: separate "out" and "bin"
outputs = [ "out" "dev" "man" "devdoc" ];
2015-07-26 22:25:53 +00:00
enableParallelBuilding = true;
buildInputs = [ openssl cyrus_sasl db groff libtool ];
configureFlags =
[ "--enable-overlays"
2014-08-12 11:50:40 +00:00
"--disable-dependency-tracking" # speeds up one-time build
"--enable-modules"
"--sysconfdir=/etc"
2017-09-21 14:18:45 +00:00
"--localstatedir=/var"
2017-08-08 09:48:49 +00:00
"--enable-crypt"
] ++ stdenv.lib.optional (openssl == null) "--without-tls"
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic";
doCheck = false; # needs a running LDAP server
2017-09-21 14:18:45 +00:00
installFlags = [ "sysconfdir=$(out)/etc" "localstatedir=$(out)/var" ];
# 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 = ''
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
rm -rf $out/var
rm -r libraries/*/.libs
2015-05-05 16:02:18 +00:00
'';
postInstall = ''
chmod +x "$out"/lib/*.{so,dylib}
'';
2014-09-01 03:55:46 +00:00
meta = with stdenv.lib; {
homepage = http://www.openldap.org/;
description = "An open source implementation of the Lightweight Directory Access Protocol";
2018-08-17 22:03:01 +00:00
license = licenses.openldap;
maintainers = with maintainers; [ lovek323 ];
2014-09-01 03:55:46 +00:00
platforms = platforms.unix;
};
}