diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-17 16:17:03 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-18 00:30:47 +0100 |
commit | 8d89921474bb827c6311e5352c5d92bee22cb96e (patch) | |
tree | 6395d1de4186f21f9fd608cc1e381e4b41be3cd4 /gnu/packages | |
parent | f5f916792c7069a22d95c5b7c68bcf3bbb86e451 (diff) |
gnu: Add emacs-esxml.
* gnu/packages/emacs.scm (emacs-esxml): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 3fd41e1d44..8bc9ad93f5 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") |