mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add tinyxml2.
* gnu/packages/xml.scm (tinyxml2): New variable.
This commit is contained in:
parent
76f31f0b2c
commit
931bd7f6ce
1 changed files with 22 additions and 0 deletions
|
@ -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 @@ (define-public tinyxml
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue