* [bug#68462] [PATCH] gnu: Add emacs-plan9-theme.
@ 2024-01-14 23:59 Suhail via Guix-patches via
2024-02-16 4:44 ` [bug#68462] Status: " Suhail via Guix-patches via
2024-03-06 6:17 ` [bug#68462] [PATCH v2] " Suhail Singh
0 siblings, 2 replies; 4+ messages in thread
From: Suhail via Guix-patches via @ 2024-01-14 23:59 UTC (permalink / raw)
To: 68462
* gnu/packages/emacs-xyz.scm (emacs-plan9-theme): New variable.
Change-Id: I6053ce66cfceca5a34d0dfd55691be9346f3a916
---
gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2a24f4a106..89b6f10de0 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -33771,6 +33771,27 @@ (define-public emacs-modus-themes
(license (list license:gpl3+
license:fdl1.3+)))) ; GFDLv1.3+ for the manual
+(define-public emacs-plan9-theme
+ (package
+ (name "emacs-plan9-theme")
+ (version "0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/john2x/plan9-theme.el")
+ (commit "c2da2fcb241e9800d931a1ff19ecd9fd84d30382")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0rjxbk9fljnjmg00vdqcyynzg591cgknyy2d92xsxsyg4d28dvwi"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/john2x/plan9-theme.el")
+ (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"))
base-commit: f2102cb5b9239be2ed2023b908b726af542e0124
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#68462] Status: [PATCH] gnu: Add emacs-plan9-theme.
2024-01-14 23:59 [bug#68462] [PATCH] gnu: Add emacs-plan9-theme Suhail via Guix-patches via
@ 2024-02-16 4:44 ` Suhail via Guix-patches via
2024-03-06 6:17 ` [bug#68462] [PATCH v2] " Suhail Singh
1 sibling, 0 replies; 4+ messages in thread
From: Suhail via Guix-patches via @ 2024-02-16 4:44 UTC (permalink / raw)
To: bug#68462
Bumping this. In case a potential reviewer sees this, this may well be
a relatively simple patch to review (new package with no dependencies).
--
Suhail
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#68462] [PATCH v2] gnu: Add emacs-plan9-theme.
2024-01-14 23:59 [bug#68462] [PATCH] gnu: Add emacs-plan9-theme Suhail via Guix-patches via
2024-02-16 4:44 ` [bug#68462] Status: " Suhail via Guix-patches via
@ 2024-03-06 6:17 ` Suhail Singh
2024-03-17 12:31 ` bug#68462: " Liliana Marie Prikler
1 sibling, 1 reply; 4+ messages in thread
From: Suhail Singh @ 2024-03-06 6:17 UTC (permalink / raw)
To: 68462
* gnu/packages/emacs-xyz.scm (emacs-plan9-theme): New variable.
Change-Id: I6053ce66cfceca5a34d0dfd55691be9346f3a916
---
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 e1d14ea4aa..4a06231a39 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34309,6 +34309,29 @@ (define-public emacs-modus-themes
(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"))
base-commit: f18d13b5f89c161c6ee88d15ecdaa8d973ee4503
--
2.44.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-03-17 12:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-14 23:59 [bug#68462] [PATCH] gnu: Add emacs-plan9-theme Suhail via Guix-patches via
2024-02-16 4:44 ` [bug#68462] Status: " Suhail via Guix-patches via
2024-03-06 6:17 ` [bug#68462] [PATCH v2] " Suhail Singh
2024-03-17 12:31 ` bug#68462: " Liliana Marie Prikler
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.