guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

20/36: gnu: Add jsoncpp.


From: David Craven
Subject: 20/36: gnu: Add jsoncpp.
Date: Thu, 18 Aug 2016 15:58:30 +0000 (UTC)

dvc pushed a commit to branch master
in repository guix.

commit cd131a762384628a59a443865763d157a1756f42
Author: David Craven <address@hidden>
Date:   Wed Aug 17 12:22:35 2016 +0200

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

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 8504395..9355b19 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -147,3 +147,25 @@ serialization.")
     (synopsis "YAML parser and emitter in C++")
     (description "YAML parser and emitter in C++ matching the YAML 1.2 spec.")
     (license license:bsd-3)))
+
+(define-public jsoncpp
+  (package
+    (name "jsoncpp")
+    (version "1.7.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/open-source-parsers/jsoncpp/archive/";
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0sgp6nc4c6pfn92f369v08zdwpqswn9j2ihy59bpwwl0grkx1p0h"))))
+    (build-system cmake-build-system)
+    (home-page "https://github.com/open-source-parsers/jsoncpp";)
+    (synopsis "C++ library for interacting with JSON")
+    (description "JsonCpp is a C++ library that allows manipulating JSON 
values,
+including serialization and deserialization to and from strings.  It can also
+preserve existing comment in unserialization/serialization steps, making
+it a convenient format to store user input files.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]