guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/06: gnu: Add emacs-afternoon-theme.


From: guix-commits
Subject: 06/06: gnu: Add emacs-afternoon-theme.
Date: Wed, 8 Mar 2023 10:27:32 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit aa9edead1d1fed51774b5ceced917ccbb651af19
Author: Rostislav Svoboda <Rostislav.Svoboda@gmail.com>
AuthorDate: Wed Mar 8 16:23:21 2023 +0100

    gnu: Add emacs-afternoon-theme.
    
    * gnu/packages/emacs-xyz.scm (emacs-afternoon-theme): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3584db6f11..4be5d6a305 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15376,6 +15376,28 @@ the higher it scores. This maps well to how we think 
about matching.
 Flx has support for ido (interactively do things) through flx-ido.")
     (license license:gpl3+)))
 
+(define-public emacs-afternoon-theme
+  (let ((commit "89b1d778a1f8b385775c122f2bd1c62f0fbf931a")
+        (revision "0"))
+    (package
+      (name "emacs-afternoon-theme")
+      (version (git-version "0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "http://github.com/osener/emacs-afternoon-theme";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb"))))
+      (build-system emacs-build-system)
+      (home-page "http://github.com/osener/emacs-afternoon-theme";)
+      (synopsis "Dark color theme with a deep blue background")
+      (description
+       "Afternoon theme is a dark color theme with a deep blue background.")
+      (license license:gpl3+))))
+
 (define-public emacs-cyberpunk-theme
   (package
     (name "emacs-cyberpunk-theme")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]