2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, openssl, zlib, windows }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libssh2";
|
2021-09-26 12:46:18 +00:00
|
|
|
version = "1.10.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-09-26 12:46:18 +00:00
|
|
|
url = "https://www.libssh2.org/download/libssh2-${version}.tar.gz";
|
|
|
|
sha256 = "sha256-LWTpDz3tOUuR06LndMogOkF59prr7gMAPlpvpiHkHVE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
|
|
|
|
buildInputs = [ openssl zlib ]
|
2021-02-05 17:12:51 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isMinGW windows.mingw_w64;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A client-side C library implementing the SSH2 protocol";
|
|
|
|
homepage = "https://www.libssh2.org";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.bsd3;
|
2021-09-26 12:46:18 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|