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

26 lines
755 B
Nix
Raw Normal View History

{stdenv, fetchurl, openssl, cyrus_sasl, db4, groff}:
2012-07-02 19:53:57 +00:00
stdenv.mkDerivation rec {
2014-02-04 10:34:13 +00:00
name = "openldap-2.4.38";
2012-07-02 19:53:57 +00:00
src = fetchurl {
2012-07-02 19:53:57 +00:00
url = "ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/${name}.tgz";
2014-02-04 10:34:13 +00:00
sha256 = "1l8zng86alhcmmmw09r1c4dzl7yvk6dy5fq9zia96pgck4srl848";
};
2012-07-02 19:53:57 +00:00
buildInputs = [ openssl cyrus_sasl db4 groff ];
configureFlags =
[ "--enable-overlays"
] ++ 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; # !!!
meta = {
2012-07-02 19:53:57 +00:00
homepage = "http://www.openldap.org/";
description = "An open source implementation of the Lightweight Directory Access Protocol";
2014-01-28 17:11:00 +00:00
maintainers = stdenv.lib.maintainers.mornfall;
};
}