guix-devel
[Top][All Lists]
Advanced

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

[PATCH] gnu: Add emacs-pretty-mode.


From: contact . ng0
Subject: [PATCH] gnu: Add emacs-pretty-mode.
Date: Wed, 1 Feb 2017 18:08:31 +0000

From: ng0 <address@hidden>

* gnu/packages/emacs.scm (emacs-pretty-mode): New variable.
---
 gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index df7f7869d..a51b5de1d 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3778,3 +3778,26 @@ customizable by the user.")
 Additionally it can display the number of unread emails in the
 mode-line.")
     (license license:gpl3+)))
+
+(define-public emacs-pretty-mode
+  (let ((commit "500085206e25b98d00b9ec996f91c87ba569c4ce")
+        (revision "1"))
+  (package
+    (name "emacs-pretty-mode")
+    (version (string-append "2.0.3-" revision "." (string-take commit 7)))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/akatov/pretty-mode";)
+             (commit commit)))
+       (file-name (string-append name "-" version "-checkout"))
+       (sha256
+        (base32
+         "0m7ii971zxlz8a9yx2ljf9fmd8k6hc9w1q8mi5xi32v9viccjabs"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/akatov/pretty-mode";)
+    (synopsis "Redisplay parts of the buffer as pretty Unicode symbols.")
+    (description
+     "Emacs minor mode for redisplaying parts of the buffer as pretty 
symbols.")
+    (license license:gpl3+))))
-- 
2.11.0




reply via email to

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