guix-commits
[Top][All Lists]
Advanced

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

06/10: gnu: sundials: Add 5.8.0.


From: guix-commits
Subject: 06/10: gnu: sundials: Add 5.8.0.
Date: Tue, 3 May 2022 12:03:32 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit e648957b7b99d140959311df6be46ed63338dd7f
Author: Paul A. Patience <paul@apatience.com>
AuthorDate: Thu Apr 28 18:19:22 2022 +0000

    gnu: sundials: Add 5.8.0.
    
    * gnu/packages/maths.scm (sundials-5, sundials-openmpi-5): New
    variables.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/maths.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index dd6334d4bd..0a92533d42 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -6198,6 +6198,29 @@ easily be incorporated into existing simulation codes.")
              ,%openmpi-setup)))))
     (synopsis "SUNDIALS with MPI support")))
 
+(define-public sundials-5
+  (package
+    (inherit sundials)
+    (name "sundials")
+    (version "5.8.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append 
"https://github.com/LLNL/sundials/releases/download/v";
+                           version "/sundials-" version ".tar.gz"))
+       (sha256
+        (base32
+         "04x2x0jchf9kbcw2a1c6f4h4as8sr6k2snfz8z9k897pa4rl1vfl"))))))
+
+(define-public sundials-openmpi-5
+  (package/inherit sundials-5
+    (name "sundials-openmpi")
+    (propagated-inputs
+     (package-propagated-inputs sundials-openmpi))
+    (arguments
+     (package-arguments sundials-openmpi))
+    (synopsis (package-synopsis sundials-openmpi))))
+
 (define-public sundials-julia
   (package
     (inherit sundials)



reply via email to

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