2b28312bc2
- --with-<lib> stuff isn't needed with new default - `mingw_w64` probably also isn't needed, but kept with better code just in case.
25 lines
610 B
Nix
25 lines
610 B
Nix
{ stdenv, fetchurlBoot, openssl, zlib, windows
|
|
, hostPlatform
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libssh2-1.8.0";
|
|
|
|
src = fetchurlBoot {
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
|
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";
|
|
homepage = https://www.libssh2.org;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|