gnu: guile-simple-zmq: Improve packaging.

* gnu/packages/guile-xyz.scm (guile-simple-zmq): Run guix style.
[arguments]: Use gexps.
[native-inputs]: Add autoconf, automake, pkg-config.
[inputs]: Remove autoconf, automake, pkg-config.

Change-Id: Ia41ceb2ad01ea1b32341e429816cdd20d0377f95
Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Evgeny Pisemsky 2025-02-28 21:32:49 +03:00 committed by Christopher Baines
parent afc02c4a6a
commit 127e1e89a8
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -1617,18 +1617,15 @@ inheritance.")
(url "https://github.com/jerry40/guile-simple-zmq")
(commit commit)))
(sha256
(base32
"1aq1s0f0z5g6qsv9jqr0663qv4rwxd9j1pmg1g8v6rl09xb8g8lp"))
(base32 "1aq1s0f0z5g6qsv9jqr0663qv4rwxd9j1pmg1g8v6rl09xb8g8lp"))
(file-name (git-file-name name version))))
(build-system gnu-build-system)
(arguments
'(#:make-flags
'("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
(native-inputs
(list guile-3.0))
(inputs
(list autoconf automake pkg-config zeromq))
(list
#:make-flags
#~'("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
(native-inputs (list autoconf automake pkg-config guile-3.0))
(inputs (list zeromq))
(home-page "https://github.com/jerry40/guile-simple-zmq")
(synopsis "Guile wrapper over ZeroMQ library")
(description