diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-01-14 20:57:22 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-01-14 20:57:22 +0100 |
commit | b6959d7e7b282da1abb1b5f61c8f98f2a19203ed (patch) | |
tree | 28d78c517b74801cea0cb856a356418dd977dcf0 | |
parent | e09caacac0b3a97929f9a3c69fcee455cfd45ffd (diff) |
gnu: Add emacs-bar-cursor.
* gnu/packages/emacs-xyz.scm (emacs-bar-cursor): New variable.
Change-Id: I8155ed4de4b49c8994effa7250a34ca7fa356168
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a56ff6a1e3..28adaa8f84 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4403,6 +4403,28 @@ from Emacs. It is similar to BBDB, except much, much simpler.") shine on top of your cursor so you know where it is.") (license license:gpl3+))) +(define-public emacs-bar-cursor + (let ((revision "0") + (commit "78f195b6db63459033c4f1c7e7add5d82f3ce424")) + (package + (name "emacs-bar-cursor") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ajsquared/bar-cursor.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1g344fzfkq5z53vja68kv55l1x29v15q41qb08nqc9k4pvpwdvmp")))) + (build-system emacs-build-system) + (synopsis "Bar cursor shape") + (description "This package provides a bar cursor shape. When in +overwrite mode, it will turn into a block cursor.") + (home-page "https://github.com/ajsquared/bar-cursor") + (license license:gpl2+)))) + (define-public emacs-paradox (let ((commit "96401577ed02f433debe7604e49afd478e9eda61")) ;version bump (package |