aboutsummaryrefslogtreecommitdiff
path: root/libraries/paho-mqtt-c
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/paho-mqtt-c')
-rw-r--r--libraries/paho-mqtt-c/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/libraries/paho-mqtt-c/default.nix b/libraries/paho-mqtt-c/default.nix
new file mode 100644
index 0000000..07db14d
--- /dev/null
+++ b/libraries/paho-mqtt-c/default.nix
@@ -0,0 +1,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"];
+}