mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
Curl: Propagate Zlib and OpenSSL.
svn path=/nixpkgs/trunk/; revision=15381
This commit is contained in:
parent
48216ba01a
commit
c4d720c3d1
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user