guix-commits
[Top][All Lists]
Advanced

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

09/33: gnu: Add julia-intervalsets.


From: guix-commits
Subject: 09/33: gnu: Add julia-intervalsets.
Date: Mon, 14 Jun 2021 07:46:19 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 736eecd52dc29fcf06127c8fa26d884251f6e778
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jun 14 11:36:09 2021 +0300

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

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 8e82f5e..9d7601c 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1571,6 +1571,32 @@ indexed images, sometimes called \"colormap images\" or 
\"paletted images.\"")
 interfaces with @file{.ini} files.")
     (license license:expat)))
 
+(define-public julia-intervalsets
+  (package
+    (name "julia-intervalsets")
+    (version "0.5.3")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaMath/IntervalSets.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "0gsz89cd3iygbl5qr389k9vwpg7w1nk0s90g25nsmk34y9hifxag"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     `(("julia-ellipsisnotation" ,julia-ellipsisnotation)))
+    (native-inputs
+     `(("julia-offsetarrays" ,julia-offsetarrays)))
+    (home-page "https://github.com/JuliaMath/IntervalSets.jl";)
+    (synopsis "Interval Sets for Julia")
+    (description "This package is intended to implement a \"minimal\" 
foundation
+for intervals upon which other packages might build.  In particular, we
+encourage type-piracy for the reason that only one interval package can
+unambiguously define the @code{..} and @code{±} operators.")
+    (license license:expat)))
+
 (define-public julia-invertedindices
   (package
     (name "julia-invertedindices")



reply via email to

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