mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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:
parent
5304c63678
commit
42a48a11b7
1 changed files with 21 additions and 20 deletions
|
@ -8459,7 +8459,7 @@ (define-public emacs-butler
|
||||||
(define-public emacs-zmq
|
(define-public emacs-zmq
|
||||||
(package
|
(package
|
||||||
(name "emacs-zmq")
|
(name "emacs-zmq")
|
||||||
(version "0.10.10")
|
(version "1.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -8468,12 +8468,13 @@ (define-public emacs-zmq
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0ngxm5mm0kqgvn8977ryrngamx0khzlw86d8vz5s0jhm2kgwnqp8"))))
|
(base32 "1bg4c26f8n1jy6z9dr2c9fz79myy9lbb5z67797qp1cbx8k6p3n7"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
(list
|
||||||
|
#:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'configure
|
(add-after 'unpack 'configure
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "make" "src/configure")
|
(invoke "make" "src/configure")
|
||||||
|
@ -8485,7 +8486,7 @@ (define-public emacs-zmq
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(site-lisp (string-append out "/share/emacs/site-lisp"))
|
(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"
|
(copy-file "emacs-zmq.so"
|
||||||
(string-append libdir "/emacs-zmq.so"))))))))
|
(string-append libdir "/emacs-zmq.so"))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue