guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add emacs-esxml.


From: Ricardo Wurmus
Subject: 01/03: gnu: Add emacs-esxml.
Date: Sat, 17 Feb 2018 18:35:48 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 8d89921474bb827c6311e5352c5d92bee22cb96e
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Feb 17 16:17:03 2018 +0100

    gnu: Add emacs-esxml.
    
    * gnu/packages/emacs.scm (emacs-esxml): 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 3fd41e1..8bc9ad9 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -7097,6 +7097,29 @@ scratch buffer, and, by virtue of this extension, do so 
using the Emacs
 formatting rules for that language.")
       (license license:bsd-2))))
 
+(define-public emacs-esxml
+  (package
+    (name "emacs-esxml")
+    (version "0.3.4")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/tali713/esxml.git";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/tali713/esxml/";)
+    (synopsis "SXML for EmacsLisp")
+    (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
+Simply, this is the easiest way to write HTML or XML in Lisp.  This library
+uses the native form of XML representation as used by many libraries already
+included within Emacs.  See @code{esxml-to-xml} for a concise description of
+the format.")
+    (license license:gpl3+)))
+
 (define-public epipe
   (package
     (name "epipe")



reply via email to

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