2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
cmake,
|
|
|
|
aws-c-cal,
|
|
|
|
aws-c-common,
|
|
|
|
nix,
|
|
|
|
s2n-tls,
|
|
|
|
Security,
|
|
|
|
}:
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "aws-c-io";
|
|
|
|
version = "0.14.6";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "awslabs";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-fekeGghqMKbUqKWIfpZg3a6dCpgxywhmXPoGz9y4Aos=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
buildInputs = [
|
|
|
|
aws-c-cal
|
|
|
|
aws-c-common
|
|
|
|
s2n-tls
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
passthru.tests = {
|
|
|
|
inherit nix;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "AWS SDK for C module for IO and TLS";
|
|
|
|
homepage = "https://github.com/awslabs/aws-c-io";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
};
|
|
|
|
}
|