[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/13: gnu: Add clojure-data-json.
From: |
guix-commits |
Subject: |
03/13: gnu: Add clojure-data-json. |
Date: |
Thu, 12 Sep 2024 13:15:16 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 8cb2ef0b89b1c821b10744a3b11d99a954bcb6c4
Author: Roman Scherer <roman@burningswell.com>
AuthorDate: Sat Sep 7 11:51:26 2024 +0200
gnu: Add clojure-data-json.
* gnu/packages/clojure.scm (clojure-data-json): New variable.
Change-Id: Id5da429fe375c656842250ed88d84d281954cec9
---
gnu/packages/clojure.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
index d315fc9187..c3f34e61a6 100644
--- a/gnu/packages/clojure.scm
+++ b/gnu/packages/clojure.scm
@@ -397,6 +397,32 @@ CSV data. @code{data.csv} follows the RFC4180
specification but is more
relaxed.")
(license license:epl1.0)))
+(define-public clojure-data-json
+ (package
+ (name "clojure-data-json")
+ (version "2.5.0")
+ (home-page "https://github.com/clojure/data.json")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "04k3fr9y1gp337h0d2zxam3aa3hl046r2g2qiizn7aq0rq6311p9"))))
+ (build-system clojure-build-system)
+ (arguments
+ '(#:source-dirs '("src/main/clojure")
+ #:test-dirs '("src/test/clojure")
+ #:doc-dirs '()))
+ (native-inputs (list clojure-test-check))
+ (synopsis "Clojure library for reading and writing JSON data")
+ (description "@code{data.json} is a Clojure library for reading and
+writing JSON data. @code{data.xml} is compliant with the JSON spec and has no
+external dependencies")
+ (license license:epl1.0)))
+
(define-public clojure-data-xml
(package
(name "clojure-data-xml")
- 12/13: gnu: Add http-kit., (continued)
- 12/13: gnu: Add http-kit., guix-commits, 2024/09/12
- 11/13: gnu: Add clojure-core-async., guix-commits, 2024/09/12
- 10/13: gnu: Add clojure-tools-logging., guix-commits, 2024/09/12
- 02/13: gnu: bash-minimal: Add package synopsis., guix-commits, 2024/09/12
- 09/13: gnu: Add clojure-tools-analyzer-jvm., guix-commits, 2024/09/12
- 08/13: gnu: Add clojure-tools-reader., guix-commits, 2024/09/12
- 06/13: gnu: Add clojure-core-memoize., guix-commits, 2024/09/12
- 05/13: gnu: Add clojure-core-cache., guix-commits, 2024/09/12
- 07/13: gnu: Add clojure-tools-analyzer., guix-commits, 2024/09/12
- 01/13: utils: ‘compressed-file?’ recognizes .zst and .tzst., guix-commits, 2024/09/12
- 03/13: gnu: Add clojure-data-json.,
guix-commits <=