guix-glicid/glicid/packages/maths.scm
2021-11-29 19:26:15 +01:00

36 lines
966 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-scivision-newer
(package
(inherit scalapack)
(name "scalapack-scivision-newer")
(version "2.1.0.29-upstream") ;; need this for compilation > gcc 9
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/scivision/scalapack.git")
(commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d")
))
(sha256
(base32
"02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b"))))
)
)
(define-public scalapack-latest scalapack-scivision-newer)
;; scalapack-scivision-newer
;;; glicid/maths.scm ends here