guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 339356038c3ae37fa4aaa66d8aed564c32086a03
Author: Anderson Torres <[email protected]>
AuthorDate: Wed Aug 19 15:47:21 2026 -0300
gnu: Add emacs-purr.
* gnu/packages/emacs-xyz.scm (emacs-purr): New variable.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 139ea18f9d..35cba162cf 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -843,6 +843,32 @@ to HTML. This HTML version is then displayed using the
Emacs simple HTML
renderer, @code{shr}.")
(license license:gpl3+)))
+(define-public emacs-purr
+ ;; No public release. Version string taken from source code.
+ (let ((commit "61ca21fa58e1491f9c05daf21b5a0dbd1f70f1c0")
+ (revision "0"))
+ (package
+ (name "emacs-purr")
+ (version (git-version "0.5.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~zelda/purr.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1l9s6rh0bva3l73zwzk72n9cw7g9yx6p9zysvnvvm9v93ryrisgp"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list #:tests? #f)) ; No tests.
+ (home-page "https://git.sr.ht/~zelda/purr.el")
+ (synopsis "Project overview dashboard for Emacs")
+ (description
+ "This package provides a project overview dashboard for Emacs, tracking
+Git projects in background.")
+ (license license:gpl3+))))
+
(define-public emacs-sops
(package
(name "emacs-sops")