summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-06-05 14:32:24 +0200
committerVladimír Čunát <v@cunat.cz>2023-06-05 14:32:24 +0200
commitd6c138dff20ca14eede530b04af499fbf2ea8dbf (patch)
tree6d6110450ac2f348b51de897be0b5b21b7446715
parent09720cc41f0dad446f119e3a6259c640d4b33003 (diff)
downloadnixpkgs-d6c138dff20ca14eede530b04af499fbf2ea8dbf.tar
nixpkgs-d6c138dff20ca14eede530b04af499fbf2ea8dbf.tar.gz
nixpkgs-d6c138dff20ca14eede530b04af499fbf2ea8dbf.tar.bz2
nixpkgs-d6c138dff20ca14eede530b04af499fbf2ea8dbf.tar.lz
nixpkgs-d6c138dff20ca14eede530b04af499fbf2ea8dbf.tar.xz
nixpkgs-d6c138dff20ca14eede530b04af499fbf2ea8dbf.tar.zst
nixpkgs-d6c138dff20ca14eede530b04af499fbf2ea8dbf.zip
libssh2: propagate openssl
I think think this started with the update in 268a7bab344.
-rw-r--r--pkgs/development/libraries/libssh2/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libssh2/default.nix b/pkgs/development/libraries/libssh2/default.nix
index ba1455350e6..091885a1f08 100644
--- a/pkgs/development/libraries/libssh2/default.nix
+++ b/pkgs/development/libraries/libssh2/default.nix
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
 
   outputs = [ "out" "dev" "devdoc" ];
 
-  buildInputs = [ openssl zlib ]
+  propagatedBuildInputs = [ openssl ]; # see Libs: in libssh2.pc
+  buildInputs = [ zlib ]
     ++ lib.optional stdenv.hostPlatform.isMinGW windows.mingw_w64;
 
   meta = with lib; {