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

25 lines
610 B
Nix
Raw Normal View History

2017-06-28 20:22:12 +00:00
{ stdenv, fetchurlBoot, openssl, zlib, windows
, hostPlatform
}:
stdenv.mkDerivation rec {
2016-12-21 03:58:45 +00:00
name = "libssh2-1.8.0";
src = fetchurlBoot {
url = "${meta.homepage}/download/${name}.tar.gz";
2016-12-21 03:58:45 +00:00
sha256 = "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr";
};
outputs = [ "out" "dev" "devdoc" ];
buildInputs = [ openssl zlib ]
++ stdenv.lib.optional hostPlatform.isMinGW windows.mingw_w64;
meta = {
description = "A client-side C library implementing the SSH2 protocol";
2018-05-01 03:03:23 +00:00
homepage = https://www.libssh2.org;
platforms = stdenv.lib.platforms.all;
maintainers = [ ];
};
}