mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
26 lines
633 B
Nix
26 lines
633 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, openssl, paho-mqtt-c }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "paho.mqtt.cpp";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eclipse";
|
|
repo = "paho.mqtt.cpp";
|
|
rev = "v${version}";
|
|
hash = "sha256-tcq0a4X5dKE4rnczRMAVe3Wt43YzUKbxsv9Sk+q+IB8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ openssl paho-mqtt-c ];
|
|
|
|
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;
|
|
};
|
|
}
|