diff options
| author | coopi <coopi@noreply.codeberg.org> | 2026-02-28 14:58:17 +0400 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-06 09:14:33 +0100 |
| commit | 929d7f6a82e5e45884bedc5ab24fab5941f52295 (patch) | |
| tree | 88200022df8f388f18e1de3880f430a18bbe2527 /gnu | |
| parent | 4c9e710517b4091def3be95e6aaf10d53a06b492 (diff) | |
gnu: Add emacs-modus-catppuccin-themes.
* gnu/packages/emacs-xyz.scm (emacs-modus-catppuccin-themes): New variable.
Merges guix/guix!6765
Change-Id: I45f20f47776310ed35ac5a20e08937d4b41da719
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5a11d171a7a..370b1fa99a5 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3198,6 +3198,33 @@ different color palettes, such as @samp{frappe}, @samp{macchiato}, or @samp{latte}.") (license license:expat)))) +(define-public emacs-modus-catppuccin-themes + ;; No tagged release. No "Version" keyword either. + (let ((commit "2f412c2ff9dee7a37fdb8921be4fcb3b84a8a577") + (revision "0")) + (package + (name "emacs-modus-catppuccin-themes") + (version (git-version "0.0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xuchengpeng/catppuccin-themes") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0m01rdcmwk15nxvmcb82srj37hw6pmpgmfld798makga1mwkqlyx")))) + (build-system emacs-build-system) + (arguments (list #:tests? #f)) ;no tests + (propagated-inputs + (list emacs-modus-themes)) + (home-page "https://github.com/xuchengpeng/catppuccin-themes") + (synopsis "Catppuccin themes for Emacs built on top of Modus themes") + (description "A set of pastel color schemes for Emacs based on the +Catppuccin theme and built on top of the Modus themes, with palettes like +@samp{frappe}, @samp{macchiato}, or @samp{latte}.") + (license license:expat)))) + (define-public emacs-theme-magic ;; No tagged release upstream, but the commit below correspond to the 0.2.3 ;; release. |
