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