gnu: emacs-zmq: Update to 1.0.0.

* gnu/packages/emacs-xyz.scm (emacs-zmq): Update to 1.0.0.
[arguments]: Use G-expressions.
This commit is contained in:
Nicolas Goaziou 2023-06-24 17:39:58 +02:00
parent 5304c63678
commit 42a48a11b7
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -8459,7 +8459,7 @@ (define-public emacs-butler
(define-public emacs-zmq
(package
(name "emacs-zmq")
(version "0.10.10")
(version "1.0.0")
(source
(origin
(method git-fetch)
@ -8468,12 +8468,13 @@ (define-public emacs-zmq
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ngxm5mm0kqgvn8977ryrngamx0khzlw86d8vz5s0jhm2kgwnqp8"))))
(base32 "1bg4c26f8n1jy6z9dr2c9fz79myy9lbb5z67797qp1cbx8k6p3n7"))))
(build-system emacs-build-system)
(arguments
`(#:tests? #f ; no tests
(list
#:tests? #f ; no tests
#:phases
(modify-phases %standard-phases
#~(modify-phases %standard-phases
(add-after 'unpack 'configure
(lambda _
(invoke "make" "src/configure")
@ -8485,7 +8486,7 @@ (define-public emacs-zmq
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(site-lisp (string-append out "/share/emacs/site-lisp"))
(libdir (string-append site-lisp "/zmq-0.10.10")))
(libdir (string-append site-lisp "/zmq-" #$version)))
(copy-file "emacs-zmq.so"
(string-append libdir "/emacs-zmq.so"))))))))
(native-inputs