[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/13: gnu: Add julia-json.
From: |
guix-commits |
Subject: |
11/13: gnu: Add julia-json. |
Date: |
Sat, 30 Jan 2021 09:38:30 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit dae521a0c935d325a13910087d0d2e5c16e97bbf
Author: nixo <nicolo@nixo.xyz>
AuthorDate: Tue Jan 19 00:06:34 2021 +0100
gnu: Add julia-json.
* gnu/packages/julia-xyz.scm (julia-json): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 3dd731e..34dba95 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -125,6 +125,31 @@ scaled by a constant factor. Consequently, they have a
fixed number of
digits (bits) after the decimal (radix) point.")
(license license:expat)))
+(define-public julia-json
+ (package
+ (name "julia-json")
+ (version "0.21.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaIO/JSON.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1f9k613kbknmp4fgjxvjaw4d5sfbx8a5hmcszmp1w9rqfqngjx9m"))))
+ (build-system julia-build-system)
+ (propagated-inputs
+ `(("julia-datastructures" ,julia-datastructures)
+ ("julia-fixedpointnumbers" ,julia-fixedpointnumbers)
+ ("julia-parsers" ,julia-parsers)
+ ("julia-offsetarrays" ,julia-offsetarrays)))
+ (home-page "https://github.com/JuliaIO/JSON.jl")
+ (synopsis "JSON parsing and printing library for Julia")
+ (description "@code{JSON.jl} is a pure Julia module which supports parsing
+and printing JSON documents.")
+ (license license:expat)))
+
(define-public julia-orderedcollections
(package
(name "julia-orderedcollections")
- 01/13: build-system/julia: Enable tests., (continued)
- 01/13: build-system/julia: Enable tests., guix-commits, 2021/01/30
- 04/13: gnu: julia-compat: Update to 3.25.0., guix-commits, 2021/01/30
- 09/13: gnu: Add julia-adapt., guix-commits, 2021/01/30
- 13/13: guix system: Test 'extension-graph' and 'shepherd-graph'., guix-commits, 2021/01/30
- 08/13: gnu: Add julia-parsers., guix-commits, 2021/01/30
- 10/13: gnu: Add julia-offsetarrays., guix-commits, 2021/01/30
- 05/13: gnu: Add julia-orderedcollections., guix-commits, 2021/01/30
- 03/13: gnu: julia-compat: Set file name according to standards., guix-commits, 2021/01/30
- 06/13: gnu: Add julia-datastructures., guix-commits, 2021/01/30
- 07/13: gnu: Add julia-fixedpointnumbers., guix-commits, 2021/01/30
- 11/13: gnu: Add julia-json.,
guix-commits <=
- 12/13: services: shepherd: Allow custom 'shepherd' package., guix-commits, 2021/01/30