summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEvgeny Pisemsky <[email protected]>2025-02-28 21:32:49 +0300
committerChristopher Baines <[email protected]>2025-03-02 10:26:03 +0000
commit127e1e89a83785f4ad8362bdc76b0d850279cf2f (patch)
treefafbe5a8078be17a98a8937fe73787337ace0c6c /gnu
parentafc02c4a6af735bfaa1a3a7655827ef5ea86a8a9 (diff)
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 <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/guile-xyz.scm15
1 files changed, 6 insertions, 9 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 00b7540a09..763df902fd 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -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