guix-commits
[Top][All Lists]
Advanced

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

03/07: gnu: Add emacs-prism.


From: guix-commits
Subject: 03/07: gnu: Add emacs-prism.
Date: Thu, 25 May 2023 16:20:53 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 45c173b3c8cf26fd44d6c67c88042d3872647fd6
Author: Maciej Kalandyk <m.kalandyk@outlook.com>
AuthorDate: Thu May 25 20:29:07 2023 +0200

    gnu: Add emacs-prism.
    
    * gnu/packages/emacs-xyz.scm (emacs-prism): 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 e57992daca..f3700ddd7e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1191,6 +1191,28 @@ and inserts a SpongeBob SquarePants ASCII art figure in 
the current
 buffer.")
       (license license:gpl3+))))
 
+(define-public emacs-prism
+  (package
+    (name "emacs-prism")
+    (version "0.3.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/alphapapa/prism.el";)
+                    (commit version)))
+              (sha256
+               (base32
+                "0n2gf7302hqdnhsax1y3ahksfmmpd8cmiv1zgb7rjg8qhcs0iqp2"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-dash))
+    (home-page "https://github.com/alphapapa/prism.el";)
+    (synopsis
+     "Disperses bracket-bounded syntax into a spectrum of color by depth")
+    (description
+     "Prism is a Rainbow Blocks-like mode for Emacs.  It preserves non-color
+face properties and allows configuration of faces and colors.")
+    (license license:gpl3+)))
+
 (define-public emacs-project
   (package
     (name "emacs-project")



reply via email to

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