guix-glicid/glicid/packages/maths.scm

36 lines
933 B
Scheme
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(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)
#:use-module (guix git-download)
)
;;;;;;;;
(define-public scalapack-newer
(package
(inherit scalapack)
(name "scalapack-newer")
(version "2.1.0-upstrean") ;; need this for compilation > gcc 9
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Reference-ScaLAPACK/scalapack.git")
(commit "3f898b5f1225c9eee271ae6ac6c351ef84f860af")
))
(sha256
(base32
"02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b"))))
)
)
(define-public scalapack-latest scalapack-newer)
;; scalapack-newer
;;; glicid/maths.scm ends here