diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-01-14 20:45:55 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-01-14 20:50:26 +0100 |
commit | e09caacac0b3a97929f9a3c69fcee455cfd45ffd (patch) | |
tree | 43ff4c851ca065ffe8915b85a002792b1a942a9b | |
parent | d663d4b6cae2289bcdd8bdcd02d58ed30769f1e2 (diff) |
gnu: Add emacs-wakib-keys.
* gnu/packages/emacs-xyz.scm (emacs-wakib-keys): New variable.
Change-Id: I8be627dfd7f9eb54e7dbda78906b29906af168bd
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 20ad1f9d05..a56ff6a1e3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13992,6 +13992,29 @@ though currently Obby (for use with the Gobby editor) is the only 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 +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+)))) + (define-public emacs-hydra (package (name "emacs-hydra") |