1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 13:10:33 +02:00

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

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