Skip to content
Snippets Groups Projects
Unverified Commit dae521a0 authored by nixo's avatar nixo Committed by Ludovic Courtès
Browse files

gnu: Add julia-json.


* gnu/packages/julia-xyz.scm (julia-json): New variable.

Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
parent fb634a0e
No related branches found
No related tags found
No related merge requests found
...@@ -125,6 +125,31 @@ (define-public julia-fixedpointnumbers ...@@ -125,6 +125,31 @@ (define-public julia-fixedpointnumbers
digits (bits) after the decimal (radix) point.") digits (bits) after the decimal (radix) point.")
(license license:expat))) (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 (define-public julia-orderedcollections
(package (package
(name "julia-orderedcollections") (name "julia-orderedcollections")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment