2021-01-18 22:50:56 -08:00
|
|
|
{ stdenv, fetchurl, pkg-config, cmake, zlib, openssl, libsodium }:
|
2010-02-14 13:56:35 -08:00
|
|
|
|
2011-06-07 14:49:42 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2020-03-12 18:14:37 -07:00
|
|
|
pname = "libssh";
|
2020-04-23 05:33:18 -07:00
|
|
|
version = "0.8.9";
|
2012-11-29 07:21:01 -08:00
|
|
|
|
2010-02-14 13:56:35 -08:00
|
|
|
src = fetchurl {
|
2020-03-12 18:14:37 -07:00
|
|
|
url = "https://www.libssh.org/files/0.8/${pname}-${version}.tar.xz";
|
2020-04-23 05:33:18 -07:00
|
|
|
sha256 = "09b8w9m5qiap8wbvz4613nglsynpk8hn0q9b929ny2y4l2fy2nc5";
|
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
|
|
|
|
2019-04-23 20:43:35 -07:00
|
|
|
# single output, otherwise cmake and .pc files point to the wrong directory
|
|
|
|
# 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
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
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";
|
2020-03-12 18:14:37 -07:00
|
|
|
homepage = "https://libssh.org";
|
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
|
|
|
};
|
|
|
|
}
|