[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/13: gnu: Add julia-offsetarrays.
From: |
guix-commits |
Subject: |
10/13: gnu: Add julia-offsetarrays. |
Date: |
Sat, 30 Jan 2021 09:38:29 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit fb634a0e0b21864f1b3d3ab66336ea6c2cebdeb8
Author: nixo <nicolo@nixo.xyz>
AuthorDate: Tue Jan 19 00:01:28 2021 +0100
gnu: Add julia-offsetarrays.
* gnu/packages/julia-xyz.scm (julia-offsetarrays): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 2e0efb0..3dd731e 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -147,6 +147,31 @@ during iteration the @code{Ordered*} containers return
items in the order in
which they were added to the collection.")
(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
(package
(name "julia-parsers")
- branch master updated (0f27a97 -> b841524), guix-commits, 2021/01/30
- 02/13: build-system/julia: Don't rely on file name to set module name., guix-commits, 2021/01/30
- 01/13: build-system/julia: Enable tests., guix-commits, 2021/01/30
- 04/13: gnu: julia-compat: Update to 3.25.0., guix-commits, 2021/01/30
- 09/13: gnu: Add julia-adapt., guix-commits, 2021/01/30
- 13/13: guix system: Test 'extension-graph' and 'shepherd-graph'., guix-commits, 2021/01/30
- 08/13: gnu: Add julia-parsers., guix-commits, 2021/01/30
- 10/13: gnu: Add julia-offsetarrays.,
guix-commits <=
- 05/13: gnu: Add julia-orderedcollections., guix-commits, 2021/01/30
- 03/13: gnu: julia-compat: Set file name according to standards., guix-commits, 2021/01/30
- 06/13: gnu: Add julia-datastructures., guix-commits, 2021/01/30
- 07/13: gnu: Add julia-fixedpointnumbers., guix-commits, 2021/01/30
- 11/13: gnu: Add julia-json., guix-commits, 2021/01/30
- 12/13: services: shepherd: Allow custom 'shepherd' package., guix-commits, 2021/01/30