mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 13:05:08 +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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libssh";
|
pname = "libssh";
|
||||||
@ -21,6 +34,10 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config ];
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
|
||||||
|
passthru.tests = {
|
||||||
|
inherit ffmpeg sshping wireshark;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "SSH client library";
|
description = "SSH client library";
|
||||||
homepage = "https://libssh.org";
|
homepage = "https://libssh.org";
|
||||||
|
Loading…
Reference in New Issue
Block a user