gnu: Add julia-json3.

* gnu/packages/julia-xyz.scm (julia-json3): New variable.
This commit is contained in:
Efraim Flashner 2021-06-14 10:37:35 +03:00
parent adb3d8797d
commit a5daa8c0ab
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1552,6 +1552,29 @@ (define-public julia-json
and printing JSON documents.")
(license license:expat)))
(define-public julia-json3
(package
(name "julia-json3")
(version "1.8.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/quinnj/JSON3.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1mc3byqm6ygg4mjpdrx6grkr4gn06p25nr7050jgq1k2cf06iqba"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-parsers" ,julia-parsers)
("julia-structtypes" ,julia-structtypes)))
(home-page "https://github.com/quinnj/JSON3.jl")
(synopsis "JSON package for Julia")
(description "This package provides another JSON package for Julia, with a
focus on speed and slick struct mapping.")
(license license:expat)))
(define-public julia-lazyarrays
(package
(name "julia-lazyarrays")