mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add julia-offsetarrays.
* gnu/packages/julia-xyz.scm (julia-offsetarrays): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
20767b9b69
commit
fb634a0e0b
1 changed files with 25 additions and 0 deletions
|
@ -147,6 +147,31 @@ (define-public julia-orderedcollections
|
||||||
which they were added to the collection.")
|
which they were added to the collection.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-offsetarrays
|
||||||
|
(package
|
||||||
|
(name "julia-offsetarrays")
|
||||||
|
(version "1.5.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaArrays/OffsetArrays.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1y3fnssw2hzyghrk6jfcxslab0f8sjkjszh482snfq4k6mkrhy77"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-adapt" ,julia-adapt)))
|
||||||
|
;; CatIndices depends on OffsetArrays, introducing a recursive dependency
|
||||||
|
(arguments '(#:tests? #f))
|
||||||
|
(home-page "https://juliaarrays.github.io/OffsetArrays.jl/stable/")
|
||||||
|
(synopsis "Fortran-like arrays with arbitrary, zero or negative indices")
|
||||||
|
(description "@code{OffsetArrays.jl} provides Julia users with arrays that
|
||||||
|
have arbitrary indices, similar to those found in some other programming
|
||||||
|
languages like Fortran.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-parsers
|
(define-public julia-parsers
|
||||||
(package
|
(package
|
||||||
(name "julia-parsers")
|
(name "julia-parsers")
|
||||||
|
|
Loading…
Reference in a new issue