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" ];
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
patches = [
|
|
|
|
# https://github.com/libssh2/libssh2/pull/700
|
|
|
|
# openssl: add support for LibreSSL 3.5.x
|
|
|
|
./openssl_add_support_for_libressl_3_5.patch
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
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;
|
2022-10-21 18:38:19 +00:00
|
|
|
license = with licenses; [ bsd3 libssh2 ];
|
2021-09-26 12:46:18 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|