diff options
author | Cayetano Santos <[email protected]> | 2025-02-16 11:11:43 +0100 |
---|---|---|
committer | Ian Eure <[email protected]> | 2025-02-17 09:45:17 -0800 |
commit | eff080ef1635ab68073b200cfeaf57ea2e679091 (patch) | |
tree | 487b0b1390a37e890981b6a12476a48660907bb9 /gnu/packages | |
parent | 4e1e9f4cc24f423ce212c0d5ee08fd1ab5f98b02 (diff) |
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 <[email protected]>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index be83665d2a..0980fe0442 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -33629,27 +33629,26 @@ as Emacs Lisp.") (define-public emacs-transient (package (name "emacs-transient") - (version "0.8.2") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/magit/transient") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1jz65hgv4b6k4s3nfzr6js98ghl33f7vk1zyhvh7pxiznsi2s010")))) + (version "0.8.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magit/transient") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01g6r5pmprkg75n23zr27nml7dg0ncsrwgbpfnjf0snhjwb4cbhx")))) (build-system emacs-build-system) (arguments - `(#:tests? #f ;no test suite + `(#:tests? #f ;no test suite #:phases (modify-phases %standard-phases (add-after 'unpack 'build-info-manual (lambda _ (invoke "make" "info") ;; Move the info file to lisp so that it gets ;; installed by the emacs-build-system. - (rename-file "docs/transient.info" - "lisp/transient.info"))) + (rename-file "docs/transient.info" "lisp/transient.info"))) (add-after 'build-info-manual 'enter-lisp-directory (lambda _ (chdir "lisp")))))) |