2021-09-25 20:19:03 +01:00
|
|
|
{ lib, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, aws-c-cal
|
|
|
|
, aws-c-common
|
|
|
|
, aws-c-compression
|
|
|
|
, aws-c-http
|
|
|
|
, aws-c-io
|
|
|
|
, cmake
|
|
|
|
, s2n-tls
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "aws-c-mqtt";
|
2022-02-16 06:58:43 +00:00
|
|
|
version = "0.7.10";
|
2021-09-25 20:19:03 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "awslabs";
|
|
|
|
repo = "aws-c-mqtt";
|
|
|
|
rev = "v${version}";
|
2022-02-16 06:58:43 +00:00
|
|
|
sha256 = "sha256-efkRr36FbLyS9tgE/ZF3tcmhQ4f5C5ySTlgzThbqv2I=";
|
2021-09-25 20:19:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
aws-c-cal
|
|
|
|
aws-c-common
|
|
|
|
aws-c-compression
|
|
|
|
aws-c-http
|
|
|
|
aws-c-io
|
|
|
|
s2n-tls
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "C99 implementation of the MQTT 3.1.1 specification";
|
|
|
|
homepage = "https://github.com/awslabs/aws-c-mqtt";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ r-burns ];
|
|
|
|
};
|
|
|
|
}
|