guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 929d7f6a82e5e45884bedc5ab24fab5941f52295
Author: coopi <[email protected]>
AuthorDate: Sat Feb 28 14:58:17 2026 +0400

    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 <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5a11d171a7..370b1fa99a 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.

Reply via email to