mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
aws-c-mqtt: init at 0.7.8
This commit is contained in:
parent
b01ae7ae35
commit
095ababaf6
50
pkgs/development/libraries/aws-c-mqtt/default.nix
Normal file
50
pkgs/development/libraries/aws-c-mqtt/default.nix
Normal file
@ -0,0 +1,50 @@
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, aws-c-cal
|
||||
, aws-c-common
|
||||
, aws-c-compression
|
||||
, aws-c-http
|
||||
, aws-c-io
|
||||
, cmake
|
||||
, ninja
|
||||
, s2n-tls
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "aws-c-mqtt";
|
||||
version = "0.7.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "awslabs";
|
||||
repo = "aws-c-mqtt";
|
||||
rev = "v${version}";
|
||||
sha256 = "19j6nw2v36c4yff4p0fbf0748s06fd5r9cp2yakry9ybn1ada99c";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -15334,6 +15334,8 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
aws-c-mqtt = callPackage ../development/libraries/aws-c-mqtt { };
|
||||
|
||||
aws-c-s3 = callPackage ../development/libraries/aws-c-s3 { };
|
||||
|
||||
aws-checksums = callPackage ../development/libraries/aws-checksums { };
|
||||
|
Loading…
Reference in New Issue
Block a user