diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-01-19 12:32:08 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-01-19 12:32:54 +0100 |
commit | efaa3e5b8558fa5fbf1e91745b12e6b7c72e1829 (patch) | |
tree | 2743674a3c67aed31b2378295288de9cad912c82 | |
parent | dbe1711a3a8aa4d6e1bef8285270e07579a74f19 (diff) | |
download | guix-efaa3e5b8558fa5fbf1e91745b12e6b7c72e1829.tar.gz guix-efaa3e5b8558fa5fbf1e91745b12e6b7c72e1829.zip |
gnu: emacs-wakib-keys: Update to 1.0.0.
* gnu/packages/emacs-xyz.scm (emacs-wakib-keys): Update to 1.0.0.
Change-Id: I35101ef73364f8e4014e09c8aac163a8d8a2d8e1
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 890d0ee182..664d5b8cc3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -14048,27 +14048,25 @@ fully-functional one.") (license license:gpl3+))) (define-public emacs-wakib-keys - (let ((revision "0") - (commit "85a96e0476d620add31e6e73481dbcf57cabc13e")) - (package - (name "emacs-wakib-keys") - (version (git-version "0.0.1" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/darkstego/wakib-keys.git") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0fr70jmrcnyyl16h0k6kj3gcd50422ggqps688wa7x51dk6f9cvr")))) - (build-system emacs-build-system) - (synopsis "Make C-c, C-v and C-x clipboard keys work reliably in Emacs") - (description "This package provides an Emacs minor mode that provides + (package + (name "emacs-wakib-keys") + (version "1.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/darkstego/wakib-keys.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0fr70jmrcnyyl16h0k6kj3gcd50422ggqps688wa7x51dk6f9cvr")))) + (build-system emacs-build-system) + (synopsis "Make C-c, C-v and C-x clipboard keys work reliably in Emacs") + (description "This package provides an Emacs minor mode that provides modern, efficient and easy to learn keybindings (especially C-c, C-x and C-v work and provide clipboard action).") - (home-page "https://github.com/darkstego/wakib-project") - (license license:gpl3+)))) + (home-page "https://github.com/darkstego/wakib-project") + (license license:gpl3+))) (define-public emacs-hydra (package |