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

43 lines
1.2 KiB
Nix
Raw Normal View History

2015-06-18 00:50:52 +00:00
{ stdenv, fetchurl, autoconf, openssl, cyrus_sasl, db, groff }:
2012-07-02 19:53:57 +00:00
stdenv.mkDerivation rec {
2015-07-01 07:54:46 +00:00
name = "openldap-2.4.41";
2012-07-02 19:53:57 +00:00
src = fetchurl {
url = "http://www.openldap.org/software/download/OpenLDAP/openldap-release/${name}.tgz";
2015-07-01 07:54:46 +00:00
sha256 = "0vkzfd1pmin6xsv8lb1nabfxma8n1q00khr6nfifqkxlm2s6p197";
};
2012-07-02 19:53:57 +00:00
2015-07-26 22:25:53 +00:00
outputs = [ "out" "man" ];
2015-06-18 00:50:52 +00:00
nativeBuildInputs = [ autoconf ];
buildInputs = [ openssl cyrus_sasl db groff ];
2015-06-18 00:50:52 +00:00
# NOTE: Only needed for the gcc5 patch
preConfigure = ''
autoconf
'';
configureFlags =
[ "--enable-overlays"
2014-08-12 11:50:40 +00:00
"--disable-dependency-tracking" # speeds up one-time build
] ++ stdenv.lib.optional (openssl == null) "--without-tls"
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl";
2012-07-02 19:53:57 +00:00
dontPatchELF = 1; # !!!
2015-05-05 16:02:18 +00:00
# Fixup broken libtool
preFixup = ''
sed -e 's,-lsasl2,-L${cyrus_sasl}/lib -lsasl2,' \
-e 's,-lssl,-L${openssl}/lib -lssl,' \
-i $out/lib/libldap.la -i $out/lib/libldap_r.la
'';
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";
2014-09-01 03:55:46 +00:00
maintainers = with maintainers; [ lovek323 mornfall ];
platforms = platforms.unix;
};
}