aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Pisemsky <mail@pisemsky.site>2025-05-11 17:00:42 +0300
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-16 21:22:22 +0100
commit0e8baa398aae2076a88b95bfc97843bc697e4a00 (patch)
tree03b5875d2e46b8c49e74a82ade2bf166240f7603
parent40cd5e511cf96dc4036d256e5093dccf74a48dc4 (diff)
downloadguix-0e8baa398aae2076a88b95bfc97843bc697e4a00.tar.gz
guix-0e8baa398aae2076a88b95bfc97843bc697e4a00.zip
gnu: mosquitto: Update to 2.0.21.
* gnu/packages/messaging.scm (mosquitto): Update to 2.0.21, run guix style. [description]: Adjust for guix lint. Change-Id: Ia3612284ff50e893c96aad1de0a165d24c6e3277 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/messaging.scm13
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 5c48c5ff73..01fabfab33 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -2955,26 +2955,25 @@ as well as on desktop platforms. It's based on libpurple and ModemManager.")
(define-public mosquitto
(package
(name "mosquitto")
- (version "2.0.15")
+ (version "2.0.21")
(source
(origin
(method url-fetch)
(uri (string-append "https://mosquitto.org/files/source/mosquitto-"
version ".tar.gz"))
(sha256
- (base32
- "1ils0ckxz86gvr37k2gfl4q9gs12625dhhb7i6lcg49z5v9v2da7"))))
+ (base32 "17c9gf2xncxsi3v8fbgq3abfyb84lyr18in0s1pbplmqmr6fimbs"))))
(build-system cmake-build-system)
- (inputs
- (list openssl libxslt))
+ (inputs (list openssl libxslt))
(synopsis "Message broker")
- (description "This package provides Eclipse Mosquitto, a message broker
+ (description
+ "This package provides Eclipse Mosquitto, a message broker
that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto
is lightweight and is suitable for use on all devices from low power single
board computers to full servers.
The MQTT protocol provides a lightweight method of carrying out messaging
-using a publish/subscribe model. This makes it suitable for Internet of
+using a publish/subscribe model. This makes it suitable for Internet of
Things messaging such as with low power sensors or mobile devices such
as phones, embedded computers or microcontrollers.")
(home-page "https://mosquitto.org/")