nixpkgs/pkgs/development/libraries/aws-c-mqtt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
897 B
Nix
Raw Normal View History

2022-09-03 03:10:21 +00:00
{ lib
, stdenv
2021-09-25 19:19:03 +00:00
, fetchFromGitHub
, aws-c-cal
, aws-c-common
, aws-c-compression
, aws-c-http
, aws-c-io
, cmake
2022-09-03 03:10:21 +00:00
, nix
2021-09-25 19:19:03 +00:00
, s2n-tls
}:
stdenv.mkDerivation rec {
pname = "aws-c-mqtt";
2022-12-09 16:32:07 +00:00
version = "0.8.1";
2021-09-25 19:19:03 +00:00
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-c-mqtt";
rev = "v${version}";
2022-12-09 16:32:07 +00:00
sha256 = "sha256-nmSNG5o2Ck80OG4ZGYIayVdnw3Z2fn1VkUIuI9RYfL8=";
2021-09-25 19:19:03 +00:00
};
nativeBuildInputs = [
cmake
];
buildInputs = [
aws-c-cal
aws-c-common
aws-c-compression
aws-c-http
aws-c-io
s2n-tls
];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
];
2022-09-03 03:10:21 +00:00
passthru.tests = {
inherit nix;
};
2021-09-25 19:19:03 +00:00
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 ];
};
}