mqtt_cpp: init at 13.2.1

This commit is contained in:
tom barrett 2023-07-25 17:07:33 +02:00 committed by tom barrett
parent a494e4572b
commit a95c1c82d3
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
boost,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mqtt_cpp";
version = "13.2.1";
src = fetchFromGitHub {
owner = "redboltz";
repo = "mqtt_cpp";
rev = "v${finalAttrs.version}";
hash = "sha256-E5dMZ0uJ1AOwiGTxD4qhbO72blplmXHh1gTYGE34H+0=";
};
nativeBuildInputs = [cmake];
buildInputs = [boost];
meta = with lib; {
description = "MQTT client/server for C++14 based on Boost.Asio";
homepage = "https://github.com/redboltz/mqtt_cpp";
license = licenses.boost;
maintainers = with maintainers; [spalf];
platforms = platforms.unix;
};
})

View file

@ -10563,6 +10563,8 @@ with pkgs;
mpw = callPackage ../tools/security/mpw { };
mqtt_cpp = callPackage ../development/libraries/mqtt_cpp { };
mr = callPackage ../applications/version-management/mr { };
mrsh = callPackage ../shells/mrsh { };