all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH 1/2] gnu: Add tinyxml2.
@ 2016-09-11  1:13 Tobias Geerinckx-Rice
  2016-09-11  1:13 ` [PATCH 2/2] gnu: encfs: Update to 1.9 Tobias Geerinckx-Rice
  2016-09-12 13:40 ` [PATCH 1/2] gnu: Add tinyxml2 Ludovic Courtès
  0 siblings, 2 replies; 9+ messages in thread
From: Tobias Geerinckx-Rice @ 2016-09-11  1:13 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/xml.scm (tinyxml2): New variable.
---
 gnu/packages/xml.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index e9074db..7befad5 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")
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-09-13 21:59 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-11  1:13 [PATCH 1/2] gnu: Add tinyxml2 Tobias Geerinckx-Rice
2016-09-11  1:13 ` [PATCH 2/2] gnu: encfs: Update to 1.9 Tobias Geerinckx-Rice
2016-09-12 13:42   ` Ludovic Courtès
2016-09-12 13:54     ` Tobias Geerinckx-Rice
2016-09-13 12:11       ` Ludovic Courtès
2016-09-13 18:25         ` Tobias Geerinckx-Rice
2016-09-13 21:59           ` Ludovic Courtès
2016-09-12 13:40 ` [PATCH 1/2] gnu: Add tinyxml2 Ludovic Courtès
2016-09-13 15:31   ` Tobias Geerinckx-Rice

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.