summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Torres <anderson.torres.8519@gmail.com>2026-08-19 15:47:21 -0300
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2026-08-28 06:36:03 +0200
commit339356038c3ae37fa4aaa66d8aed564c32086a03 (patch)
treef54506c2b1081786f644cc017fbba682786b02da
parentd5415236f7f2970c777f87aa19d7208d6badea88 (diff)
gnu: Add emacs-purr.
* gnu/packages/emacs-xyz.scm (emacs-purr): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r--gnu/packages/emacs-xyz.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 139ea18f9d6..35cba162cf4 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
843renderer, @code{shr}.") 843renderer, @code{shr}.")
844 (license license:gpl3+))) 844 (license license:gpl3+)))
845 845
846(define-public emacs-purr
847 ;; No public release. Version string taken from source code.
848 (let ((commit "61ca21fa58e1491f9c05daf21b5a0dbd1f70f1c0")
849 (revision "0"))
850 (package
851 (name "emacs-purr")
852 (version (git-version "0.5.0" revision commit))
853 (source
854 (origin
855 (method git-fetch)
856 (uri (git-reference
857 (url "https://git.sr.ht/~zelda/purr.el")
858 (commit commit)))
859 (file-name (git-file-name name version))
860 (sha256
861 (base32 "1l9s6rh0bva3l73zwzk72n9cw7g9yx6p9zysvnvvm9v93ryrisgp"))))
862 (build-system emacs-build-system)
863 (arguments
864 (list #:tests? #f)) ; No tests.
865 (home-page "https://git.sr.ht/~zelda/purr.el")
866 (synopsis "Project overview dashboard for Emacs")
867 (description
868 "This package provides a project overview dashboard for Emacs, tracking
869Git projects in background.")
870 (license license:gpl3+))))
871
846(define-public emacs-sops 872(define-public emacs-sops
847 (package 873 (package
848 (name "emacs-sops") 874 (name "emacs-sops")