mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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:
parent
ad1664f898
commit
a1dc5ac832
1 changed files with 23 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue