mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 09:37:03 +01:00
gnu: Add julia-json3.
* gnu/packages/julia-xyz.scm (julia-json3): New variable.
This commit is contained in:
parent
adb3d8797d
commit
a5daa8c0ab
1 changed files with 23 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue