mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-transient: Update to 0.4.3-0.cc0fa80.
* gnu/packages/emacs-xyz.scm (emacs-transient): Update to 0.4.3-0.cc0fa80. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Reviewed-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
e0397faf6f
commit
8ad5aac483
1 changed files with 37 additions and 33 deletions
|
@ -30212,43 +30212,47 @@ as Emacs Lisp.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-transient
|
(define-public emacs-transient
|
||||||
(package
|
;; Use this unreleased commit to support a recent Magit change needed to add
|
||||||
(name "emacs-transient")
|
;; Reviewed-by: tags for any contributor.
|
||||||
(version "0.4.3")
|
(let ((commit "cc0fa80530b02493f73b870032bfcdd1435286cd")
|
||||||
(source (origin
|
(revision "0"))
|
||||||
(method git-fetch)
|
(package
|
||||||
(uri (git-reference
|
(name "emacs-transient")
|
||||||
(url "https://github.com/magit/transient")
|
(version (git-version "0.4.3" revision commit))
|
||||||
(commit (string-append "v" version))))
|
(source (origin
|
||||||
(file-name (git-file-name name version))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32
|
(url "https://github.com/magit/transient")
|
||||||
"03qs1bj7dxgdppzcnhzmldpdam1h8kzd0ps2bk82slypm7d63nay"))))
|
(commit commit)))
|
||||||
(build-system emacs-build-system)
|
(file-name (git-file-name name version))
|
||||||
(arguments
|
(sha256
|
||||||
`(#:tests? #f ;no test suite
|
(base32
|
||||||
#:phases (modify-phases %standard-phases
|
"10yaanpz3krh3f9vzyafg6n85yp8sk58gj9vrpsqg926x4m0w1p1"))))
|
||||||
(add-after 'unpack 'build-info-manual
|
(build-system emacs-build-system)
|
||||||
(lambda _
|
(arguments
|
||||||
(invoke "make" "info")
|
`(#:tests? #f ;no test suite
|
||||||
;; Move the info file to lisp so that it gets
|
#:phases (modify-phases %standard-phases
|
||||||
;; installed by the emacs-build-system.
|
(add-after 'unpack 'build-info-manual
|
||||||
(rename-file "docs/transient.info"
|
(lambda _
|
||||||
"lisp/transient.info")))
|
(invoke "make" "info")
|
||||||
(add-after 'build-info-manual 'enter-lisp-directory
|
;; Move the info file to lisp so that it gets
|
||||||
(lambda _
|
;; installed by the emacs-build-system.
|
||||||
(chdir "lisp"))))))
|
(rename-file "docs/transient.info"
|
||||||
(native-inputs (list texinfo))
|
"lisp/transient.info")))
|
||||||
(propagated-inputs (list emacs-compat))
|
(add-after 'build-info-manual 'enter-lisp-directory
|
||||||
(home-page "https://magit.vc/manual/transient")
|
(lambda _
|
||||||
(synopsis "Transient commands in Emacs")
|
(chdir "lisp"))))))
|
||||||
(description
|
(native-inputs (list texinfo))
|
||||||
"Taking inspiration from prefix keys and prefix arguments
|
(propagated-inputs (list emacs-compat))
|
||||||
|
(home-page "https://magit.vc/manual/transient")
|
||||||
|
(synopsis "Transient commands in Emacs")
|
||||||
|
(description
|
||||||
|
"Taking inspiration from prefix keys and prefix arguments
|
||||||
in Emacs, Transient implements a similar abstraction involving a prefix
|
in Emacs, Transient implements a similar abstraction involving a prefix
|
||||||
command, infix arguments and suffix commands. We could call this abstraction
|
command, infix arguments and suffix commands. We could call this abstraction
|
||||||
a \"transient command\", but because it always involves at least two
|
a \"transient command\", but because it always involves at least two
|
||||||
commands (a prefix and a suffix) we prefer to call it just a \"transient\".")
|
commands (a prefix and a suffix) we prefer to call it just a \"transient\".")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-forge
|
(define-public emacs-forge
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue