guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

20/26: gnu: Add julia-rangearrays.


From: guix-commits
Subject: 20/26: gnu: Add julia-rangearrays.
Date: Mon, 31 May 2021 05:56:24 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit a33695945c9d762b0a5568cbfb18274736d36186
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 31 12:39:25 2021 +0300

    gnu: Add julia-rangearrays.
    
    * gnu/packages/julia-xyz.scm (julia-rangearrays): New variable.
---
 gnu/packages/julia-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index bc4c1db..71f2019 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1631,6 +1631,27 @@ format.")
 exposed to users in @code{Query.jl}.")
     (license license:expat)))
 
+(define-public julia-rangearrays
+  (package
+    (name "julia-rangearrays")
+    (version "0.3.2")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaArrays/RangeArrays.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "1ihzfyfq1xihkjcvn7xmzfbn6igzidb4fkzdcxwfr5qkvi52gnmg"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/JuliaArrays/RangeArrays.jl";)
+    (synopsis "Array data structures with autogenerated columns")
+    (description "The goal of RangeArrays is to provide efficient and 
convenient
+array data structures where the columns of the arrays are generated (on the 
fly)
+by Ranges.")
+    (license license:expat)))
+
 (define-public julia-recipesbase
   (package
     (name "julia-recipesbase")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]