1{stdenv, fetchurlBoot, openssl, zlib}:
2
3stdenv.mkDerivation rec {
4 name = "libssh2-1.6.0";
5
6 src = fetchurlBoot {
7 url = "${meta.homepage}/download/${name}.tar.gz";
8 sha256 = "05c2is69c50lyikkh29nk6zhghjk4i7hjx0zqfhq47aald1jj82s";
9 };
10
11 buildInputs = [ openssl zlib ];
12
13 meta = {
14 description = "A client-side C library implementing the SSH2 protocol";
15 homepage = http://www.libssh2.org;
16 platforms = stdenv.lib.platforms.all;
17 maintainers = [ stdenv.lib.maintainers.urkud ];
18 };
19}