about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/paho-mqtt-cpp/default.nix
blob: b62e774ba51397c4e0fede21bb6ae1663f693cf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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;
  };
}