blob: 07db14d95a570dc98c2c391a01da3a6f01c652d4 (
plain)
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
|
{ stdenv, lib, fetchurl
, cmake
, openssl
}:
stdenv.mkDerivation rec {
pname = "paho-mqtt-c";
version = "1.3.9";
meta = with lib; {
homepage = "https://eclipse.org/paho";
description = "An Eclipse Paho C client library for MQTT";
platforms = with platforms; linux;
license = licenses.epl20;
};
src = fetchurl {
url = "https://github.com/eclipse/paho.mqtt.c/archive/refs/tags/v" + version + ".tar.gz";
sha256 = "1v9m4mx47bhahzda5sf5zp80shbaizymfbdidm8hsvfgl5grnv1q";
};
buildInputs = [openssl];
nativeBuildInputs = [cmake];
cmakeFlags = ["-DPAHO_WITH_SSL=TRUE" "-DPAHO_HIGH_PERFORMANCE=TRUE"];
}
|