Merge pull request #188639 from risicle/ris-libssh-passthru-tests

This commit is contained in:
Sandro 2022-08-28 23:29:27 +02:00 committed by GitHub
commit 4146d94349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";