2015-06-02 02:55:30 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, cmake, zlib, openssl, libsodium }:
|
2010-02-14 13:56:35 -08:00
|
|
|
|
2011-06-07 14:49:42 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2017-04-18 09:47:43 -07:00
|
|
|
name = "libssh-0.7.5";
|
2012-11-29 07:21:01 -08:00
|
|
|
|
2010-02-14 13:56:35 -08:00
|
|
|
src = fetchurl {
|
2017-04-18 09:47:43 -07:00
|
|
|
url = "https://red.libssh.org/attachments/download/218/${name}.tar.xz";
|
|
|
|
sha256 = "15bh6dm9c50ndddzh3gqcgw7axp3ghrspjpkb1z3dr90vkanvs2l";
|
2010-02-14 13:56:35 -08:00
|
|
|
};
|
2012-11-29 07:21:01 -08:00
|
|
|
|
2015-05-21 16:13:52 -07: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-19 23:30:51 -07:00
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-07 14:03:07 -07:00
|
|
|
|
2015-06-02 02:55:30 -07:00
|
|
|
buildInputs = [ zlib openssl libsodium ];
|
2012-11-29 07:21:01 -08:00
|
|
|
|
2015-06-02 02:55:30 -07:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2012-11-29 07:21:01 -08:00
|
|
|
|
2014-12-20 05:35:20 -08:00
|
|
|
meta = with stdenv.lib; {
|
2010-02-14 13:56:35 -08:00
|
|
|
description = "SSH client library";
|
2014-12-20 05:35:20 -08:00
|
|
|
license = licenses.lgpl2Plus;
|
2017-03-27 10:11:17 -07:00
|
|
|
maintainers = with maintainers; [ sander ];
|
2014-12-20 05:35:20 -08:00
|
|
|
platforms = platforms.all;
|
2010-02-14 13:56:35 -08:00
|
|
|
};
|
|
|
|
}
|