2018-08-09 00:47:26 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, cmake, zlib, openssl, libsodium }:
|
2010-02-14 21:56:35 +00:00
|
|
|
|
2011-06-07 21:49:42 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-16 16:28:09 +00:00
|
|
|
name = "libssh-0.7.6";
|
2012-11-29 15:21:01 +00:00
|
|
|
|
2010-02-14 21:56:35 +00:00
|
|
|
src = fetchurl {
|
2018-10-16 16:28:09 +00:00
|
|
|
url = "https://www.libssh.org/files/0.7/libssh-0.7.6.tar.xz";
|
|
|
|
sha256 = "14hhdpn2hflywsi9d5bz2pfjxqkyi07znjij89cpakr7b4w7sq0x";
|
2010-02-14 21:56:35 +00:00
|
|
|
};
|
2012-11-29 15:21:01 +00:00
|
|
|
|
2018-08-09 00:47:26 +00:00
|
|
|
patches = [
|
|
|
|
# Fix mysql-workbench compilation
|
|
|
|
# https://bugs.mysql.com/bug.php?id=91923
|
|
|
|
(fetchpatch {
|
|
|
|
name = "include-fix-segfault-in-getissuebanner-add-missing-wrappers-in-libsshpp.patch";
|
|
|
|
url = https://git.libssh.org/projects/libssh.git/patch/?id=5ea81166bf885d0fd5d4bb232fc22633f5aaf3c4;
|
|
|
|
sha256 = "12q818l3nasqrfrsghxdvjcyya1bfcg0idvsf8xwm5zj7criln0a";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2015-05-21 23:13:52 +00:00
|
|
|
postPatch = ''
|
|
|
|
# Fix headers to use libsodium instead of NaCl
|
|
|
|
sed -i 's,nacl/,sodium/,g' ./include/libssh/curve25519.h src/curve25519.c
|
|
|
|
'';
|
2015-05-20 06:30:51 +00:00
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-07 21:03:07 +00:00
|
|
|
|
2015-06-02 09:55:30 +00:00
|
|
|
buildInputs = [ zlib openssl libsodium ];
|
2012-11-29 15:21:01 +00:00
|
|
|
|
2015-06-02 09:55:30 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2012-11-29 15:21:01 +00:00
|
|
|
|
2014-12-20 13:35:20 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-02-14 21:56:35 +00:00
|
|
|
description = "SSH client library";
|
2014-12-20 13:35:20 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = with maintainers; [ sander ];
|
2014-12-20 13:35:20 +00:00
|
|
|
platforms = platforms.all;
|
2010-02-14 21:56:35 +00:00
|
|
|
};
|
|
|
|
}
|