gnu: guile-simple-zmq: Update to 0.0.0-8.e944617.
* gnu/packages/guile-xyz.scm (guile-simple-zmq): Update to 0.0.0-8.e944617. [build-system]: Switch to gnu-build-system. [arguments]: Remove the set-libzmq-file-name phase. [inputs]: Add autoconf, automake and pkg-config.
This commit is contained in:
parent
c1da9829f8
commit
73303067c7
1 changed files with 11 additions and 14 deletions
|
@ -1001,8 +1001,8 @@ convenient nested tree operations.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public guile-simple-zmq
|
(define-public guile-simple-zmq
|
||||||
(let ((commit "c8b1fa09e08e12207cf84023fc3d569936c886d7")
|
(let ((commit "e9446173280117e98ab4208e2aa5273128650e19")
|
||||||
(revision "7"))
|
(revision "8"))
|
||||||
(package
|
(package
|
||||||
(name "guile-simple-zmq")
|
(name "guile-simple-zmq")
|
||||||
(version (git-version "0.0.0" revision commit))
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
@ -1014,23 +1014,20 @@ convenient nested tree operations.")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ilyviny3c2am20d192cqhq7rsdy3jvbvmvqqg7qv9myrcwqg26y"))
|
"1nhlp5kl1095k1irvv0kgdbc7lp5qki3d3wg9rla6f7822hkmrzw"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system guile-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:source-directory "src"
|
'(#:make-flags
|
||||||
#:phases (modify-phases %standard-phases
|
'("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
|
||||||
(add-after 'unpack 'set-libzmq-file-name
|
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
|
||||||
(substitute* "src/simple-zmq.scm"
|
|
||||||
(("\\(dynamic-link \"libzmq\"\\)")
|
|
||||||
(format #f "(dynamic-link \"~a/lib/libzmq.so\")"
|
|
||||||
(assoc-ref inputs "zeromq"))))
|
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("guile" ,guile-3.0)))
|
`(("guile" ,guile-3.0)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("zeromq" ,zeromq)))
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("zeromq" ,zeromq)))
|
||||||
(home-page "https://github.com/jerry40/guile-simple-zmq")
|
(home-page "https://github.com/jerry40/guile-simple-zmq")
|
||||||
(synopsis "Guile wrapper over ZeroMQ library")
|
(synopsis "Guile wrapper over ZeroMQ library")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue