gnu: Add julia-staticarrays.
* gnu/packages/julia-xyz.scm (julia-staticarrays-0.11.0): New variable.
This commit is contained in:
parent
8048ec5e60
commit
6298c93880
|
@ -1300,3 +1300,28 @@ algorithms for building plotting components.")
|
|||
(description "Generic implementation of the marching squares algorithm for
|
||||
tracing contour curves on a scalar 2D field.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-staticarrays
|
||||
(package
|
||||
(name "julia-staticarrays")
|
||||
(version "0.11.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaArrays/StaticArrays.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name "StaticArrays")
|
||||
(sha256
|
||||
(base32 "0ni4rdq8qq4c7m49my885ispilqvhbza0id92j16rqzhdff8bghg"))))
|
||||
(build-system julia-build-system)
|
||||
(home-page "https://github.com/JuliaArrays/StaticArrays.jl")
|
||||
(synopsis "Statically sized arrays for Julia")
|
||||
(description "@code{StaticArrays} provides a framework for implementing
|
||||
statically sized arrays in Julia, using the abstract type
|
||||
@code{StaticArray{Size,T,N} <: AbstractArray{T,N}}. Subtypes of StaticArray
|
||||
will provide fast implementations of common array and linear algebra
|
||||
operations. Note that here \"statically sized\" means that the size can be
|
||||
determined from the type, and \"static\" does not necessarily imply
|
||||
immutable.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in New Issue