Skip to content

Commit

Permalink
openldap: support building without cyrus-sasl and tls
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoflow committed Mar 19, 2013
1 parent 4ab9c00 commit 1c86db4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/libraries/openldap/default.nix
Expand Up @@ -8,7 +8,12 @@ stdenv.mkDerivation rec {
sha256 = "01h6zq6zki9b1k07pbyps5vxj9w39ybzjvkyz5h9xk09dd54raza";
};

buildInputs = [openssl cyrus_sasl db4 groff];
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";

dontPatchELF = 1; # !!!

Expand Down

0 comments on commit 1c86db4

Please sign in to comment.