mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 10:30:43 +02:00
gnu: emacs-transient: Update to 0.8.4.
* gnu/packages/emacs-xyz.scm (emacs-transient): Update to 0.8.4. Change-Id: I2f63b57c3f8f7ca19260aeffb2742c0fa797a30e Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
parent
4e1e9f4cc2
commit
eff080ef16
1 changed files with 12 additions and 13 deletions
|
@ -33629,27 +33629,26 @@ as Emacs Lisp.")
|
||||||
(define-public emacs-transient
|
(define-public emacs-transient
|
||||||
(package
|
(package
|
||||||
(name "emacs-transient")
|
(name "emacs-transient")
|
||||||
(version "0.8.2")
|
(version "0.8.4")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/magit/transient")
|
(uri (git-reference
|
||||||
(commit (string-append "v" version))))
|
(url "https://github.com/magit/transient")
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"1jz65hgv4b6k4s3nfzr6js98ghl33f7vk1zyhvh7pxiznsi2s010"))))
|
(base32 "01g6r5pmprkg75n23zr27nml7dg0ncsrwgbpfnjf0snhjwb4cbhx"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no test suite
|
`(#:tests? #f ;no test suite
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(add-after 'unpack 'build-info-manual
|
(add-after 'unpack 'build-info-manual
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "make" "info")
|
(invoke "make" "info")
|
||||||
;; Move the info file to lisp so that it gets
|
;; Move the info file to lisp so that it gets
|
||||||
;; installed by the emacs-build-system.
|
;; installed by the emacs-build-system.
|
||||||
(rename-file "docs/transient.info"
|
(rename-file "docs/transient.info" "lisp/transient.info")))
|
||||||
"lisp/transient.info")))
|
|
||||||
(add-after 'build-info-manual 'enter-lisp-directory
|
(add-after 'build-info-manual 'enter-lisp-directory
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "lisp"))))))
|
(chdir "lisp"))))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue