mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Added slapd to openldap
svn path=/nixpkgs/trunk/; revision=9456
This commit is contained in:
parent
b167a71f29
commit
203c236135
|
@ -1,12 +1,12 @@
|
|||
{stdenv, fetchurl, openssl}:
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "openldap-2.3.32";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/openldap-2.3.32.tgz;
|
||||
md5 = "154d674cf95a8f8acc496cc6cb0671e1";
|
||||
sha256 = "1pw6j8ag8nm91mccwb3p9wk7ccsfdb8jz5v6a5alfrq3npyck0j8";
|
||||
};
|
||||
buildInputs = [openssl];
|
||||
configureFlags = "--disable-slapd --disable-static";
|
||||
buildInputs = [openssl cyrus_sasl db4];
|
||||
configureFlags = "--disable-static";
|
||||
dontPatchELF = 1; # !!!
|
||||
}
|
||||
|
|
|
@ -1951,7 +1951,7 @@ rec {
|
|||
};
|
||||
|
||||
openldap = import ../development/libraries/openldap {
|
||||
inherit fetchurl stdenv openssl;
|
||||
inherit fetchurl stdenv openssl cyrus_sasl db4;
|
||||
};
|
||||
|
||||
openssl = import ../development/libraries/openssl {
|
||||
|
|
Loading…
Reference in a new issue