1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: guile-mqtt: Update to 1.0.0.

* gnu/packages/guile-xyz.scm (guile-mqtt): Update to 1.0.0.
[source]: Fetch from git repository.
[arguments]: Patch extension path before build.
[native-inputs]: Add autoconf, automake, nyacc-2.01, texinfo.

Change-Id: I04c5a65a6568b94cf7309b5a8b6ccfa31d5c9c4e
This commit is contained in:
Evgeny Pisemsky 2025-05-31 19:54:55 +03:00 committed by Danny Milosavljevic
parent de2db0e83d
commit 6e9fe3f15d
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -1652,15 +1652,16 @@ the Guile compiler tower to generate the DSL from AWS JSON specifications.")
(define-public guile-mqtt
(package
(name "guile-mqtt")
(version "0.2.1")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/mdjurfeldt/" name
"/releases/download/v" version
"/" name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/mdjurfeldt/guile-mqtt")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "16a3r6yk41yskwv4qbkrsi0f5rvc7aw2s5di74i8y89j1x9yp9zs"))))
(base32 "1lvxic93cyzhdq7gb22pfz5j5pf7b1pcv0ahblkan8jbhzpqxvm0"))))
(build-system gnu-build-system)
(arguments
(list
@ -1668,15 +1669,23 @@ the Guile compiler tower to generate the DSL from AWS JSON specifications.")
#~(list "GUILE_AUTO_COMPILE=0")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-extension-path
(add-before 'build 'patch-extension-path
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "module/ffi/mosquitto.scm"
(("list #f \"libmosquitto\"")
(string-append
"list #f \""
(search-input-file inputs "/lib/libmosquitto.so")
"\""))))))))
(native-inputs (list guile-3.0 pkg-config))
(setenv "HOME" "/tmp")
(with-directory-excursion "module"
(invoke "make" "ffi/mosquitto.scm")
(substitute* "ffi/mosquitto.scm"
(("list #f \"libmosquitto\"")
(string-append
"list #f \""
(search-input-file inputs "/lib/libmosquitto.so")
"\"")))))))))
(native-inputs (list autoconf
automake
guile-3.0
nyacc-2.01
pkg-config
texinfo))
(inputs (list mosquitto))
(home-page "https://github.com/mdjurfeldt/guile-mqtt")
(synopsis "Guile bindings for the libmosquitto library")