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

20 lines
519 B
Nix
Raw Normal View History

{stdenv, fetchurl, openssl, cyrus_sasl, db4, groff}:
2012-07-02 19:53:57 +00:00
stdenv.mkDerivation rec {
2013-03-19 18:01:35 +00:00
name = "openldap-2.4.34";
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";
2013-03-19 18:01:35 +00:00
sha256 = "01h6zq6zki9b1k07pbyps5vxj9w39ybzjvkyz5h9xk09dd54raza";
};
2012-07-02 19:53:57 +00:00
buildInputs = [openssl cyrus_sasl db4 groff];
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";
};
}