nixpkgs/pkgs/development/libraries/libssh/default.nix

27 lines
730 B
Nix
Raw Normal View History

2015-06-02 11:55:30 +02:00
{ stdenv, fetchurl, pkgconfig, cmake, zlib, openssl, libsodium }:
stdenv.mkDerivation rec {
2015-07-20 01:59:48 +02:00
name = "libssh-0.7.1";
src = fetchurl {
2015-07-20 01:59:48 +02:00
url = "https://red.libssh.org/attachments/download/154/libssh-0.7.1.tar.xz";
sha256 = "0v84zm957z31yyrj47n62hby38nrjk5ih0ajmgccnqrjdpwwrirg";
};
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 ];
2015-06-02 11:55:30 +02:00
nativeBuildInputs = [ cmake pkgconfig ];
meta = with stdenv.lib; {
description = "SSH client library";
license = licenses.lgpl2Plus;
2015-06-02 11:55:30 +02:00
maintainers = with maintainers; [ sander urkud ];
platforms = platforms.all;
};
}