2015-06-02 10:55:30 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, cmake, zlib, openssl, libsodium }:
|
2010-02-14 21:56:35 +00:00
|
|
|
|
2011-06-07 22:49:42 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-02-05 13:22:20 +00:00
|
|
|
name = "libssh-0.7.4";
|
2012-11-29 15:21:01 +00:00
|
|
|
|
2010-02-14 21:56:35 +00:00
|
|
|
src = fetchurl {
|
2017-02-05 13:22:20 +00:00
|
|
|
url = "https://red.libssh.org/attachments/download/210/${name}.tar.xz";
|
|
|
|
sha256 = "03bcp9ksqp0s1pmwfmzhcknvkxay5k0mjzzxp3rjlifbng1vxq9r";
|
2010-02-14 21:56:35 +00:00
|
|
|
};
|
2012-11-29 15:21:01 +00:00
|
|
|
|
2015-05-22 00:13:52 +01: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 07:30:51 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-07 22:03:07 +01:00
|
|
|
|
2015-06-02 10:55:30 +01:00
|
|
|
buildInputs = [ zlib openssl libsodium ];
|
2012-11-29 15:21:01 +00:00
|
|
|
|
2015-06-02 10:55:30 +01: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 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ sander ];
|
2014-12-20 13:35:20 +00:00
|
|
|
platforms = platforms.all;
|
2010-02-14 21:56:35 +00:00
|
|
|
};
|
|
|
|
}
|