guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add emacs-adoc-mode


From: Leo Famulari
Subject: 02/02: gnu: Add emacs-adoc-mode
Date: Tue, 17 Jul 2018 17:59:20 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 36a71ce04d357a594f4b9c17712e9a2330a6fbab
Author: Jack Hill <address@hidden>
Date:   Mon Jul 16 13:24:05 2018 -0400

    gnu: Add emacs-adoc-mode
    
    * gnu/packages/emacs.scm (emacs-adoc-mode): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 7267921..aae6341 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -11498,3 +11498,24 @@ is also intended for 'text viewing modes' such as info 
or (wo)man.  This gives a
 common look and feel, or let's say theme, across different markup language 
modes
 and 'text viewing modes' respectively.")
     (license license:gpl3+)))
+
+(define-public emacs-adoc-mode
+  (package
+    (name "emacs-adoc-mode")
+    (version "0.6.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://stable.melpa.org/packages/adoc-mode-";
+                           version ".el"))
+       (sha256
+        (base32
+         "1c6hrgxxsnl2c19rgjykpm7r4xg9lp6bmk5z6bi7g8pqlrgwffcy"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-markup-faces" ,emacs-markup-faces)))
+    (home-page "https://github.com/sensorflo/adoc-mode/wiki";)
+    (synopsis "AsciiDoc mode for Emacs")
+    (description "This package provides an Emacs major mode for editing 
AsciiDoc
+files.  It focuses on highlighting the document to improve readability.")
+    (license license:gpl2+)))



reply via email to

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