guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: Add emacs-plan9-theme.


From: guix-commits
Subject: 01/06: gnu: Add emacs-plan9-theme.
Date: Sun, 17 Mar 2024 08:29:15 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit 2ad6e7b43be32bfd186cba54ce5d9e1996a6c36f
Author: Suhail Singh <suhailsingh247@gmail.com>
AuthorDate: Wed Mar 6 01:17:22 2024 -0500

    gnu: Add emacs-plan9-theme.
    
    * gnu/packages/emacs-xyz.scm (emacs-plan9-theme): New variable.
    
    Change-Id: I6053ce66cfceca5a34d0dfd55691be9346f3a916
    Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
 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 8c3fc5e022..9eaa596233 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34300,6 +34300,29 @@ users with red-green color deficiency.")
     (license (list license:gpl3+
                    license:fdl1.3+)))) ; GFDLv1.3+ for the manual
 
+(define-public emacs-plan9-theme
+  (let ((commit "c2da2fcb241e9800d931a1ff19ecd9fd84d30382")
+        (revision "0"))
+    (package
+      (name "emacs-plan9-theme")
+      (home-page "https://github.com/john2x/plan9-theme.el";)
+      (version (git-version "0.2" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0rjxbk9fljnjmg00vdqcyynzg591cgknyy2d92xsxsyg4d28dvwi"))))
+      (build-system emacs-build-system)
+      (synopsis "Light color theme for Emacs based on Plan 9")
+      (description
+       "@code{plan9} is an Emacs theme with light colors and a classic
+look which is inspired by the colors of Plan 9 from Bell Labs.")
+      (license license:gpl3+))))
+
 (define-public emacs-punpun-theme
   (let ((commit "7026684cd568cb691af3ced5de14c375fe6f5a1a")
         (revision "0"))



reply via email to

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