1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00
nixpkgs/pkgs/development/libraries/libssh/default.nix

27 lines
725 B
Nix
Raw Normal View History

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