me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-structarrays.

* gnu/packages/julia-xyz.scm (julia-structarrays): New variable.
master
Efraim Flashner 2021-10-04 16:01:52 +03:00
parent 50026532a0
commit 03f6a44cfc
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 34 additions and 0 deletions

View File

@ -4276,6 +4276,40 @@ are defined for @code{AbstractStrings}, and any iterator that define
applied to any distance.")
(license license:expat)))
(define-public julia-structarrays
(package
(name "julia-structarrays")
(version "0.6.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaArrays/StructArrays.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0rjcpyjwzg70n87q5r9c5i1qzigavncslxssm3rk5a3y549py56v"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-dataapi" ,julia-dataapi)
("julia-staticarrays" ,julia-staticarrays)
("julia-tables" ,julia-tables)))
(native-inputs
`(("julia-documenter" ,julia-documenter)
("julia-offsetarrays" ,julia-offsetarrays)
("julia-pooledarrays" ,julia-pooledarrays)
("julia-typedtables" ,julia-typedtables)
("julia-weakrefstrings" ,julia-weakrefstrings)))
(home-page "https://github.com/JuliaArrays/StructArrays.jl")
(synopsis "Efficient implementation of struct arrays in Julia")
(description "This package introduces the type @code{StructArray} which is
an @code{AbstractArray} whose elements are @code{struct} (for example
@code{NamedTuples}, or @code{ComplexF64}, or a custom user defined
@code{struct}). While a @code{StructArray} iterates @code{structs}, the layout
is column based (meaning each field of the @code{struct} is stored in a separate
@code{Array}).")
(license license:expat)))
(define-public julia-structtypes
(package
(name "julia-structtypes")