2009-02-12 20:51:51 +01:00
|
|
|
{stdenv, fetchurl, openssl, cyrus_sasl, db4, groff}:
|
2007-01-11 22:55:29 +01:00
|
|
|
|
2012-07-02 21:53:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "openldap-2.4.31";
|
|
|
|
|
2007-01-11 22:55:29 +01:00
|
|
|
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";
|
2007-01-11 22:55:29 +01:00
|
|
|
};
|
2012-07-02 21:53:57 +02:00
|
|
|
|
2009-02-12 20:51:51 +01:00
|
|
|
buildInputs = [openssl cyrus_sasl db4 groff];
|
|
|
|
|
2012-07-02 21:53:57 +02:00
|
|
|
dontPatchELF = 1; # !!!
|
2009-02-12 20:51:51 +01:00
|
|
|
|
|
|
|
meta = {
|
2012-07-02 21:53:57 +02:00
|
|
|
homepage = "http://www.openldap.org/";
|
2009-02-12 20:51:51 +01:00
|
|
|
description = "An open source implementation of the Lightweight Directory Access Protocol";
|
|
|
|
};
|
2007-01-11 22:55:29 +01:00
|
|
|
}
|