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

30 lines
814 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, cmake, zlib, openssl, libsodium }:
stdenv.mkDerivation rec {
name = "libssh-0.8.7";
src = fetchurl {
url = "https://www.libssh.org/files/0.8/${name}.tar.xz";
sha256 = "14nmwfnnrhkwcfk5hn7azl905ivbh4wllmsbw5abd80b5yi4qc23";
};
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
# single output, otherwise cmake and .pc files point to the wrong directory
# 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;
maintainers = with maintainers; [ sander ];
platforms = platforms.all;
};
}