mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
34 lines
760 B
Scheme
34 lines
760 B
Scheme
|
(define-module (glicid packages maths)
|
||
|
#:use-module (guix packages)
|
||
|
#:use-module (guix utils)
|
||
|
#:use-module (gnu packages maths)
|
||
|
#:use-module (gnu packages commencement)
|
||
|
#:use-module (gnu packages mpi)
|
||
|
#:use-module (guix download)
|
||
|
)
|
||
|
|
||
|
;;;;;;;;
|
||
|
|
||
|
(define-public scalapack-newer
|
||
|
|
||
|
(package
|
||
|
(inherit scalapack)
|
||
|
(name "scalapack-newer")
|
||
|
(version "2.1.0")
|
||
|
(source (origin
|
||
|
(method url-fetch)
|
||
|
|
||
|
(uri (string-append "http://www.netlib.org/scalapack/scalapack-"
|
||
|
version ".tgz"))
|
||
|
|
||
|
(sha256
|
||
|
(base32
|
||
|
"0rv4w90b65b2kvjpj8g9bdkl4xqc42q20f5bzpxdrkajk1a35jan"))))
|
||
|
|
||
|
)
|
||
|
)
|
||
|
|
||
|
(define-public scalapack-latest scalapack-newer)
|
||
|
|
||
|
;;; glicid/maths.scm ends here
|