gnu: Add julia-staticarrays.

* gnu/packages/julia-xyz.scm (julia-staticarrays): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
zimoun 2021-03-25 02:04:55 +01:00 committed by Ludovic Courtès
parent 5765370794
commit be80227737
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -567,6 +567,31 @@ (define-public julia-reexport
(description "This package provides tools to re-export modules and symbols.")
(license license:expat)))
(define-public julia-staticarrays
(package
(name "julia-staticarrays")
(version "1.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaArrays/StaticArrays.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "01z8bcqwpfkp8p1h1r36pr5cc3798y76zkas7g3206pcsdhvlkz1"))))
(build-system julia-build-system)
(inputs
`(("julia-benchmarktools" ,julia-benchmarktools)))
(home-page "https://github.com/JuliaArrays/StaticArrays.jl")
(synopsis "Statically sized arrays")
(description "This package provides a framework for implementing
statically sized arrays in Julia, using the abstract type
@code{StaticArray{Size,T,N} <: AbstractArray{T,N}}. Subtypes of
@code{StaticArray} will provide fast implementations of common array and
linear algebra operations.")
(license license:expat)))
(define-public julia-uris
(package
(name "julia-uris")