diff options
author | Roel Janssen <roel@gnu.org> | 2018-02-24 11:51:27 +0100 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2018-02-26 22:27:31 +0100 |
commit | c74b8b41cf18ecb52f17bb069980aa7ba46661fb (patch) | |
tree | 93bdb2dd928803d4b4d596415999c98a914add13 /gnu | |
parent | d504de2655e553e7b826af63fe9a66516ddf2ea5 (diff) | |
download | guix-c74b8b41cf18ecb52f17bb069980aa7ba46661fb.tar.gz |
gnu: Add emacs-esxml.
* gnu/packages/emacs.scm (emacs-esxml): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index b7b088d42e..4a56325e4f 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3559,6 +3559,28 @@ The purpose of this library is to wrap all the quirks and hassle of @code{package.el} into a sane API.") (license license:gpl3+))) +(define-public emacs-esxml + (package + (name "emacs-esxml") + (version "0.3.4") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/tali713/esxml/archive/" + version ".tar.gz")) + (sha256 + (base32 + "01yk4ibbln3ykrin2124hfdi53fsp9gv7j49qw93s2ls52c9zb2f")))) + (build-system emacs-build-system) + (home-page "https://github.com/tali713/esxml") + (synopsis "Elisp library for working with XML, ESXML and SXML") + (description + "This library provides two formats for XML code generation. The primary +form is esxml. This is the form that is returned by such functions as +@code{libxml-parse-xml-region} and it is used internally by emacs in many +xml-related libraries.") + (license license:gpl3+))) + (define-public emacs-queue (package (name "emacs-queue") |