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

24 lines
637 B
Nix
Raw Normal View History

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