guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add cjson.


From: guix-commits
Subject: 02/02: gnu: Add cjson.
Date: Tue, 8 Dec 2020 04:28:45 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit ab58b2cc32068fc9e5f0a7c7ae112349943b7dfd
Author: Ryan Prior <rprior@protonmail.com>
AuthorDate: Tue Dec 1 04:10:32 2020 +0000

    gnu: Add cjson.
    
    * gnu/packages/javascript.scm (cjson): New variable.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/javascript.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm
index ac9fbfe..48bde16 100644
--- a/gnu/packages/javascript.scm
+++ b/gnu/packages/javascript.scm
@@ -31,10 +31,31 @@
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system cmake)
   #:use-module (guix build-system trivial)
   #:use-module (guix build-system minify)
   #:use-module (guix utils))
 
+(define-public cjson
+  (package
+    (name "cjson")
+    (version "1.7.14")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/DaveGamble/cJSON";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32 
"1rlnailhjm180zb6pc17jwphjwivw8kfpqgixjfgq4iyryq46sah"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:configure-flags '("-DENABLE_CJSON_UTILS=On")))
+    (home-page "https://github.com/DaveGamble/cJSON";)
+    (synopsis "JSON parser written in ANSI C")
+    (description "This library provides a portable embeddable JSON parser.")
+    (license license:expat)))
+
 (define-public font-mathjax
   (package
     (name "font-mathjax")



reply via email to

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