guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-monokai-theme.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-monokai-theme.
Date: Sat, 07 Nov 2020 04:45:13 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d8ef0fe  gnu: Add emacs-monokai-theme.
d8ef0fe is described below

commit d8ef0fe30c7a28d88a2d585e4a487a0d93723047
Author: Noah Landis <noahlandis@posteo.net>
AuthorDate: Fri Nov 6 16:39:04 2020 -0700

    gnu: Add emacs-monokai-theme.
    
    * gnu/packages/emacs-xyz.scm (emacs-monokai-theme): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 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 27e99d0..bd8543c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -25310,6 +25310,27 @@ the TypeScript implementation.")
 service.")
       (license license:expat))))
 
+(define-public emacs-monokai-theme
+  (package
+    (name "emacs-monokai-theme")
+    (version "3.5.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/oneKelvinSmith/monokai-emacs";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0dy8c3349j7fmp8052hbgvk0b7ldlv5jqpg0paq1i0hlypivd30i"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/oneKelvinSmith/monokai-emacs";)
+    (synopsis "High contrast color theme for Emacs")
+    (description
+     "Monokai theme is a port of the popular TextMate Monokai theme for
+Emacs.")
+    (license license:gpl3+)))
+
 (define-public emacs-nord-theme
   (package
     (name "emacs-nord-theme")



reply via email to

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