mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
libssh: add some key reverse-dependencies to passthru.tests
This commit is contained in:
parent
75c33f5ea2
commit
6b096da115
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user