gnu: Add julia-staticarrayscore.

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

Change-Id: I17cf746b6c473685505fbdf70dda5a97ddf20148
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Spencer King 2024-09-05 21:23:35 +00:00 committed by Ludovic Courtès
parent ad1664f898
commit a1dc5ac832
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -6032,6 +6032,29 @@ (define-public julia-staticarrays
linear algebra operations.")
(license license:expat)))
(define-public julia-staticarrayscore
(package
(name "julia-staticarrayscore")
(version "1.4.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaArrays/StaticArraysCore.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0dvi9c4abjzvdn6lyr6adpc8qf4432rg3p5z96a3rc3nlsvfns9y"))))
(build-system julia-build-system)
(home-page "https://github.com/JuliaArrays/StaticArraysCore.jl")
(synopsis "Common types and functions for static arrays")
(description
"This package provides definitions for most of the
primary types and functions in @code{StaticArrays.jl}. This enables
downstream packages to implement new methods on these types without
depending on the entirety of @code{StaticArrays.jl}.")
(license license:expat)))
(define-public julia-statsapi
(package
(name "julia-statsapi")