2015-06-02 11:55:30 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, cmake, zlib, openssl, libsodium }:
|
2010-02-14 22:56:35 +01:00
|
|
|
|
2011-06-07 23:49:42 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-20 08:30:51 +02:00
|
|
|
name = "libssh-0.7.0";
|
2012-11-29 16:21:01 +01:00
|
|
|
|
2010-02-14 22:56:35 +01:00
|
|
|
src = fetchurl {
|
2015-06-02 11:55:30 +02:00
|
|
|
url = "https://git.libssh.org/projects/libssh.git/snapshot/${name}.tar.gz";
|
2015-05-24 22:20:49 +02:00
|
|
|
sha256 = "1wfrdqhv97f4ycd9bcpgb6gw47kr7b2iq8cz5knk8a6n9c6870k0";
|
2010-02-14 22:56:35 +01:00
|
|
|
};
|
2012-11-29 16:21:01 +01:00
|
|
|
|
2015-05-26 23:13:16 +02:00
|
|
|
patches = [ ./0001-Reintroduce-ssh_forward_listen-Fixes-194.patch ];
|
|
|
|
|
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
|
|
|
|
2015-06-02 11:55:30 +02:00
|
|
|
buildInputs = [ zlib openssl libsodium ];
|
2012-11-29 16:21:01 +01:00
|
|
|
|
2015-06-02 11:55:30 +02:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2012-11-29 16:21:01 +01:00
|
|
|
|
2014-12-20 14:35:20 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-02-14 22:56:35 +01:00
|
|
|
description = "SSH client library";
|
2014-12-20 14:35:20 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
2015-06-02 11:55:30 +02:00
|
|
|
maintainers = with maintainers; [ sander urkud ];
|
2014-12-20 14:35:20 +01:00
|
|
|
platforms = platforms.all;
|
2010-02-14 22:56:35 +01:00
|
|
|
};
|
|
|
|
}
|