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

20 lines
507 B
Nix
Raw Normal View History

{stdenv, fetchurlBoot, openssl, zlib}:
stdenv.mkDerivation rec {
2015-06-19 08:13:56 +03:00
name = "libssh2-1.6.0";
src = fetchurlBoot {
url = "${meta.homepage}/download/${name}.tar.gz";
2015-06-19 08:13:56 +03:00
sha256 = "05c2is69c50lyikkh29nk6zhghjk4i7hjx0zqfhq47aald1jj82s";
};
buildInputs = [ openssl zlib ];
meta = {
description = "A client-side C library implementing the SSH2 protocol";
homepage = http://www.libssh2.org;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}