2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, cmake, zlib, openssl, libsodium }:
|
2010-02-14 22:56:35 +01:00
|
|
|
|
2011-06-07 23:49:42 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2020-03-13 02:14:37 +01:00
|
|
|
pname = "libssh";
|
2021-08-26 19:37:15 +02:00
|
|
|
version = "0.9.6";
|
2012-11-29 16:21:01 +01:00
|
|
|
|
2010-02-14 22:56:35 +01:00
|
|
|
src = fetchurl {
|
2021-08-26 19:37:15 +02:00
|
|
|
url = "https://www.libssh.org/files/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "sha256-hrz4hb2bgEZv4OBUU8WLh332GvqLqUeljDVtfw+rgps=";
|
2010-02-14 22:56:35 +01:00
|
|
|
};
|
2012-11-29 16:21:01 +01:00
|
|
|
|
2015-05-22 01:13:52 +02: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 08:30:51 +02:00
|
|
|
|
2019-04-24 05:43:35 +02:00
|
|
|
# single output, otherwise cmake and .pc files point to the wrong directory
|
|
|
|
# outputs = [ "out" "dev" ];
|
2015-10-07 23:03:07 +02:00
|
|
|
|
2015-06-02 11:55:30 +02:00
|
|
|
buildInputs = [ zlib openssl libsodium ];
|
2012-11-29 16:21:01 +01:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2012-11-29 16:21:01 +01:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2010-02-14 22:56:35 +01:00
|
|
|
description = "SSH client library";
|
2020-03-13 02:14:37 +01:00
|
|
|
homepage = "https://libssh.org";
|
2014-12-20 14:35:20 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = with maintainers; [ sander ];
|
2014-12-20 14:35:20 +01:00
|
|
|
platforms = platforms.all;
|
2010-02-14 22:56:35 +01:00
|
|
|
};
|
|
|
|
}
|