mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
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:
parent
d1a6a795b3
commit
e648957b7b
1 changed files with 23 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue