mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -05:00
gnu: Add julia-bson.
* gnu/packages/julia-xyz.scm (julia-bson): New variable.
This commit is contained in:
parent
bfde12f719
commit
4ea3215d8f
1 changed files with 23 additions and 0 deletions
|
@ -368,6 +368,29 @@ (define-public julia-blockbandedmatrices
|
||||||
@code{BlockArrays.jl} whose layout of non-zero blocks is banded.")
|
@code{BlockArrays.jl} whose layout of non-zero blocks is banded.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-bson
|
||||||
|
(package
|
||||||
|
(name "julia-bson")
|
||||||
|
(version "0.3.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaIO/BSON.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1l5608ma2ys7v2gpcqbiv9mwfc6yrlqkihrfx1pf7fgv5llhd4fn"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("julia-dataframes" ,julia-dataframes)))
|
||||||
|
(home-page "https://github.com/JuliaIO/BSON.jl")
|
||||||
|
(synopsis "Binary JSON serialisation format")
|
||||||
|
(description "@code{BSON.jl} is a Julia package for working with the Binary
|
||||||
|
JSON serialisation format. It can be used as a general store for Julia data
|
||||||
|
structures.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-bufferedstreams
|
(define-public julia-bufferedstreams
|
||||||
(package
|
(package
|
||||||
(name "julia-bufferedstreams")
|
(name "julia-bufferedstreams")
|
||||||
|
|
Loading…
Reference in a new issue