2019-06-16 20:59:06 +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 {
|
2020-03-13 01:14:37 +00:00
|
|
|
pname = "libssh";
|
2020-04-23 13:33:18 +01:00
|
|
|
version = "0.8.9";
|
2012-11-29 15:21:01 +00:00
|
|
|
|
2010-02-14 21:56:35 +00:00
|
|
|
src = fetchurl {
|
2020-03-13 01:14:37 +00:00
|
|
|
url = "https://www.libssh.org/files/0.8/${pname}-${version}.tar.xz";
|
2020-04-23 13:33:18 +01:00
|
|
|
sha256 = "09b8w9m5qiap8wbvz4613nglsynpk8hn0q9b929ny2y4l2fy2nc5";
|
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
|
|
|
|
2019-04-24 04:43:35 +01:00
|
|
|
# single output, otherwise cmake and .pc files point to the wrong directory
|
|
|
|
# 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";
|
2020-03-13 01:14:37 +00:00
|
|
|
homepage = "https://libssh.org";
|
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
|
|
|
};
|
|
|
|
}
|