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>
This commit is contained in:
Paul A. Patience 2022-04-28 18:19:22 +00:00 committed by Ludovic Courtès
parent d1a6a795b3
commit e648957b7b
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -6198,6 +6198,29 @@ (define-public sundials-openmpi
,%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)