aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/apr-util
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-04-09 14:59:06 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-04-09 14:59:06 +0000
commitccd2316471b0e99e1c9e5cc12e5484054a235a64 (patch)
tree5c937c901b8c06e9bea84437a8cfa89d56bd1b93 /pkgs/development/libraries/apr-util
parent450ef3730cf64ee583e849a387dd834e08df366c (diff)
Fixing the builds of apr, apache, subversion and friends when having enabled the ldap support.
svn path=/nixpkgs/trunk/; revision=26764
Diffstat (limited to 'pkgs/development/libraries/apr-util')
-rw-r--r--pkgs/development/libraries/apr-util/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/apr-util/default.nix b/pkgs/development/libraries/apr-util/default.nix
index fc417b2b58af..dfaa340dcf95 100644
--- a/pkgs/development/libraries/apr-util/default.nix
+++ b/pkgs/development/libraries/apr-util/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
${if ldapSupport then "--with-ldap" else ""}
'';
- buildInputs = if ldapSupport then [ openldap ] else [];
+ propagatedBuildInputs = stdenv.lib.optional ldapSupport openldap;
passthru = {
inherit bdbSupport;