ngz pushed a commit to branch master
in repository guix.
commit decde148e195229571768ce47160d665858ee839
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sun Mar 17 23:02:09 2024 +0100
gnu: emacs-key-chord: Update to 0.7.
* gnu/packages/emacs-xyz.scm (emacs-key-chord): Update to 0.7.
[source]<origin>: Use GIT-FETCH and switch to Emacs Orphanage.
Change-Id: I413f5c7a474d32b0e74f9535306f8d100df3f08f
---
gnu/packages/emacs-xyz.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 94205fb704..08163bd595 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -19787,15 +19787,17 @@ a point. The plugin provides visual feedback for
marked regions.")
(define-public emacs-key-chord
(package
(name "emacs-key-chord")
- (version "0.6")
+ (version "0.7")
(source
(origin
- (method url-fetch)
- (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
- (file-name (string-append "key-chord-" version ".el"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emacsorphanage/key-chord")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
+ "0r3zvq1z79csgcq0mgifdakx0z0li3haxk4wxvijwxllfb9kn22g"))))
(build-system emacs-build-system)
(home-page "https://www.emacswiki.org/emacs/key-chord.el")
(synopsis "Map pairs of simultaneously pressed keys to Emacs commands")