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

29 lines
755 B
Nix
Raw Normal View History

2015-06-02 09:55:30 +00:00
{ stdenv, fetchurl, pkgconfig, cmake, zlib, openssl, libsodium }:
stdenv.mkDerivation rec {
2017-02-05 13:22:20 +00:00
name = "libssh-0.7.4";
src = fetchurl {
2017-02-05 13:22:20 +00:00
url = "https://red.libssh.org/attachments/download/210/${name}.tar.xz";
sha256 = "03bcp9ksqp0s1pmwfmzhcknvkxay5k0mjzzxp3rjlifbng1vxq9r";
};
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 06:30:51 +00:00
outputs = [ "out" "dev" ];
2015-06-02 09:55:30 +00:00
buildInputs = [ zlib openssl libsodium ];
2015-06-02 09:55:30 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
meta = with stdenv.lib; {
description = "SSH client library";
license = licenses.lgpl2Plus;
2015-06-02 09:55:30 +00:00
maintainers = with maintainers; [ sander urkud ];
platforms = platforms.all;
};
}