mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
new scalapack version
This commit is contained in:
parent
9bbb120b9c
commit
b03a466a57
1 changed files with 33 additions and 0 deletions
33
glicid/packages/maths.scm
Normal file
33
glicid/packages/maths.scm
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
(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
|
Loading…
Add table
Reference in a new issue