ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ lib
|
||
, stdenv
|
||
, fetchurl
|
||
, pkg-config
|
||
, cmake
|
||
, zlib
|
||
, openssl
|
||
, libsodium
|
||
|
||
# for passthru.tests
|
||
, ffmpeg
|
||
, sshping
|
||
, wireshark
|
||
}:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "libssh";
|
||
version = "0.11.1";
|
||
|
||
src = fetchurl {
|
||
url = "https://www.libssh.org/files/${lib.versions.majorMinor version}/libssh-${version}.tar.xz";
|
||
hash = "sha256-FLfcxy6R4IFRxYuYGntXCrJmP2MOfSg3ZF1anGEsG3k=";
|
||
};
|
||
|
||
outputs = [ "out" "dev" ];
|
||
|
||
postPatch = ''
|
||
# Fix headers to use libsodium instead of NaCl
|
||
sed -i 's,nacl/,sodium/,g' ./include/libssh/curve25519.h src/curve25519.c
|
||
'';
|
||
|
||
# Don’t build examples, which are not installed and require additional dependencies not
|
||
# included in `buildInputs` such as libX11.
|
||
cmakeFlags = [ "-DWITH_EXAMPLES=OFF" ];
|
||
|
||
buildInputs = [ zlib openssl libsodium ];
|
||
|
||
nativeBuildInputs = [ cmake pkg-config ];
|
||
|
||
postFixup = ''
|
||
substituteInPlace $dev/lib/cmake/libssh/libssh-config.cmake \
|
||
--replace-fail "set(_IMPORT_PREFIX \"$out\")" "set(_IMPORT_PREFIX \"$dev\")"
|
||
'';
|
||
|
||
passthru.tests = {
|
||
inherit ffmpeg sshping wireshark;
|
||
};
|
||
|
||
meta = with lib; {
|
||
description = "SSH client library";
|
||
homepage = "https://libssh.org";
|
||
license = licenses.lgpl2Plus;
|
||
maintainers = with maintainers; [ sander ];
|
||
platforms = platforms.all;
|
||
};
|
||
}
|