libssh: add some key reverse-dependencies to passthru.tests

This commit is contained in:
Robert Scott 2022-08-28 14:52:05 +01:00
parent 75c33f5ea2
commit 6b096da115

View File

@ -1,4 +1,17 @@
{ lib, stdenv, fetchurl, pkg-config, cmake, zlib, openssl, libsodium }:
{ lib
, stdenv
, fetchurl
, pkg-config
, cmake
, zlib
, openssl
, libsodium
# for passthru.tests
, ffmpeg
, sshping
, wireshark
}:
stdenv.mkDerivation rec {
pname = "libssh";
@ -21,6 +34,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ];
passthru.tests = {
inherit ffmpeg sshping wireshark;
};
meta = with lib; {
description = "SSH client library";
homepage = "https://libssh.org";