3
0
Fork 0
forked from mirrors/nixpkgs

Curl: Propagate Zlib and OpenSSL.

svn path=/nixpkgs/trunk/; revision=15381
This commit is contained in:
Ludovic Courtès 2009-04-28 15:41:51 +00:00
parent 48216ba01a
commit c4d720c3d1

View file

@ -11,7 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "11myjjvx1bjl709bgibv8pb1sjf4cicim16k860qzg7d1ll3cd7v";
};
buildInputs =
# Zlib and OpenSSL must be propagated because `libcurl.la' contains
# "-lz -lssl", which aren't necessary direct build inputs of
# applications that use Curl.
propagatedBuildInputs =
stdenv.lib.optional zlibSupport zlib ++
stdenv.lib.optional sslSupport openssl;