guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d5415236f7f2970c777f87aa19d7208d6badea88
Author: Anderson Torres <[email protected]>
AuthorDate: Wed Aug 19 13:53:47 2026 -0300

    gnu: Add emacs-minimal-dashboard.
    
    * gnu/packages/emacs-xyz.scm (emacs-minimal-dashboard): New variable.
    
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d01ca7e62c..139ea18f9d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -43933,6 +43933,29 @@ The contents and aspect is controlled by the 
@code{minibuffer-line-format}
 variable and the @code{minibuffer-line} face.")
     (license license:gpl3+)))
 
+(define-public emacs-minimal-dashboard
+  (package
+    (name "emacs-minimal-dashboard")
+    (version "0.1.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/dheerajshenoy/minimal-dashboard.el";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1gjrb8hmf44vhf0dssm7pwkz4mx2w7hkxk7540xd6qiwx7xnl6gz"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list #:tests? #f))                ; No tests.
+    (home-page "https://github.com/dheerajshenoy/minimal-dashboard.el";)
+    (synopsis "Minimal dashboard plugin for Emacs")
+    (description
+     "This package provides a very minimal dashboard plugin for Emacs that
+displays a centered image and message when Emacs starts.")
+    (license license:gpl3+)))
+
 (define-public emacs-minimap
   (package
     (name "emacs-minimap")

Reply via email to