diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2016-09-11 02:52:32 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2016-09-14 13:02:53 +0200 |
commit | 931bd7f6ce1845cae81e3e0b758a770c47e2cc90 (patch) | |
tree | 71ff5e430e5c3c499d4b95ccefa2d4a70357f72c | |
parent | 76f31f0b2c52942d251b39476c0306578da3bbf2 (diff) | |
download | guix-931bd7f6ce1845cae81e3e0b758a770c47e2cc90.tar.gz guix-931bd7f6ce1845cae81e3e0b758a770c47e2cc90.zip |
gnu: Add tinyxml2.
* gnu/packages/xml.scm (tinyxml2): New variable.
-rw-r--r-- | gnu/packages/xml.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index e9074dbe12..7befad54aa 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -12,6 +12,7 @@ ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is> +;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -883,6 +884,27 @@ C++ programming language.") (home-page "http://www.grinninglizard.com/tinyxml/index.html") (license license:zlib))) +(define-public tinyxml2 + (package + (name "tinyxml2") + (version "4.0.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/leethomason/tinyxml2/archive/" + version ".tar.gz")) + (sha256 + (base32 + "083z4r4khcndxi9k840lcr48sqxvar4gpsnf749xfdn1bkr8xcql")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) ; no tests + (synopsis "Small XML parser for C++") + (description "TinyXML2 is a small and simple XML parsing library for the +C++ programming language.") + (home-page "http://www.grinninglizard.com/tinyxml2/") + (license license:zlib))) + (define-public xmlstarlet (package (name "xmlstarlet") |