guix-commits
[Top][All Lists]
Advanced

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

04/25: gnu: Add julia-mutablearithmetics.


From: guix-commits
Subject: 04/25: gnu: Add julia-mutablearithmetics.
Date: Tue, 8 Jun 2021 10:58:42 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 8f7d9ce23ce9af209998ccc1d0b48c4c2e97b469
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jun 8 13:26:36 2021 +0300

    gnu: Add julia-mutablearithmetics.
    
    * gnu/packages/julia-xyz.scm (julia-mutablearithmetics): 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 591085d..c9fe8e1 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -1463,6 +1463,32 @@ to be temporarily overloaded for the purpose of 
testing.")
 Julia, with type-driven, overloadable packing/unpacking functionality.")
     (license license:expat)))
 
+(define-public julia-mutablearithmetics
+  (package
+    (name "julia-mutablearithmetics")
+    (version "0.2.19")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/jump-dev/MutableArithmetics.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "1zjfq5sh0rc941pbc9kvnr6a2lpr4yd276mw62vbncbz9jg52rrg"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     `(("julia-offsetarrays" ,julia-offsetarrays)))
+    (home-page "https://github.com/jump-dev/MutableArithmetics.jl";)
+    (synopsis "Interface for arithmetics on mutable types in Julia")
+    (description "MutableArithmetics is a Julia package which allows:
+@itemize
+@item mutable types to implement mutable arithmetics
+@item algorithms that could exploit mutable arithmetics to exploit them while
+still being completely generic
+@end itemize")
+    (license license:mpl2.0)))
+
 (define-public julia-nanmath
   (package
     (name "julia-nanmath")



reply via email to

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