diff options
| author | Anderson Torres <anderson.torres.8519@gmail.com> | 2026-08-19 16:17:42 -0300 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-08-28 06:36:03 +0200 |
| commit | 9b0139fb6c88089046b1b039e909e52ffb5de571 (patch) | |
| tree | e765a00400fb0caca4db5678630d86039c133e75 | |
| parent | 339356038c3ae37fa4aaa66d8aed564c32086a03 (diff) | |
gnu: Add emacs-welcome-dashboard.
* gnu/packages/emacs-xyz.scm (emacs-welcome-dashboard): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Merges: guix/guix#10668
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 35cba162cf4..781a8244530 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm | |||
| @@ -2835,6 +2835,35 @@ configuration files, such as @file{.gitattributes}, @file{.gitignore}, and | |||
| 2835 | 2835 | ||
| 2836 | (define-deprecated/public-alias git-modes emacs-git-modes) | 2836 | (define-deprecated/public-alias git-modes emacs-git-modes) |
| 2837 | 2837 | ||
| 2838 | (define-public emacs-welcome-dashboard | ||
| 2839 | ;; No public release. Version string taken from source code. | ||
| 2840 | (let ((commit "591ba64cad383f6d9613922f034921b5e0f1a950") | ||
| 2841 | (revision "0")) | ||
| 2842 | (package | ||
| 2843 | (name "emacs-welcome-dashboard") | ||
| 2844 | (version (git-version "0.5" revision commit)) | ||
| 2845 | (source | ||
| 2846 | (origin | ||
| 2847 | (method git-fetch) | ||
| 2848 | (uri (git-reference | ||
| 2849 | (url "https://github.com/konrad1977/welcome-dashboard") | ||
| 2850 | (commit commit))) | ||
| 2851 | (file-name (git-file-name name version)) | ||
| 2852 | (sha256 | ||
| 2853 | (base32 "042pavfyjjmw3vcq8npll3r8iiy6x14zmgviw4421z0dcj3yp1sw")))) | ||
| 2854 | (build-system emacs-build-system) | ||
| 2855 | (arguments | ||
| 2856 | (list #:tests? #f)) ; No tests. | ||
| 2857 | (propagated-inputs | ||
| 2858 | (list emacs-all-the-icons | ||
| 2859 | emacs-async | ||
| 2860 | emacs-nerd-icons)) | ||
| 2861 | (home-page "https://github.com/konrad1977/welcome-dashboard") | ||
| 2862 | (synopsis "Simple welcome dashboard") | ||
| 2863 | (description | ||
| 2864 | "This package provides an alternative dashboard for Emacs.") | ||
| 2865 | (license license:gpl3+)))) | ||
| 2866 | |||
| 2838 | (define-public emacs-with-editor | 2867 | (define-public emacs-with-editor |
| 2839 | (package | 2868 | (package |
| 2840 | (name "emacs-with-editor") | 2869 | (name "emacs-with-editor") |
