mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
44 lines
942 B
Nix
44 lines
942 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
openssl,
|
|
paho-mqtt-c,
|
|
enableStatic ? stdenv.hostPlatform.isStatic,
|
|
enableShared ? !stdenv.hostPlatform.isStatic,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "paho.mqtt.cpp";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eclipse";
|
|
repo = "paho.mqtt.cpp";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-xP3M7d7ig19kP7MfOgI0S3UHGgzkJZyv4F+ayXqMtuE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
paho-mqtt-c
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "PAHO_WITH_SSL" true)
|
|
(lib.cmakeBool "PAHO_BUILD_STATIC" enableStatic)
|
|
(lib.cmakeBool "PAHO_BUILD_SHARED" enableShared)
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Eclipse Paho MQTT C++ Client Library";
|
|
homepage = "https://www.eclipse.org/paho/";
|
|
license = licenses.epl10;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|