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

20 lines
531 B
Nix
Raw Normal View History

{stdenv, fetchurl, openssl, cyrus_sasl, db4, groff}:
2012-07-02 21:53:57 +02:00
stdenv.mkDerivation rec {
name = "openldap-2.4.31";
src = fetchurl {
2012-07-02 21:53:57 +02:00
url = "ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/${name}.tgz";
sha256 = "bde845840df4794b869a6efd6a6b1086f80989038e4844b2e4d7d6b57b39c5b6";
};
2012-07-02 21:53:57 +02:00
buildInputs = [openssl cyrus_sasl db4 groff];
2012-07-02 21:53:57 +02:00
dontPatchELF = 1; # !!!
meta = {
2012-07-02 21:53:57 +02:00
homepage = "http://www.openldap.org/";
description = "An open source implementation of the Lightweight Directory Access Protocol";
};
}