gnu: Add tinyxml2.

* gnu/packages/xml.scm (tinyxml2): New variable.
master
Tobias Geerinckx-Rice 2016-09-11 02:52:32 +02:00
parent 76f31f0b2c
commit 931bd7f6ce
No known key found for this signature in database
GPG Key ID: 91CCDB9B48541B99
1 changed files with 22 additions and 0 deletions

View File

@ -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")