guix-glicid/glicid/packages/maths.scm
2021-11-29 22:11:51 +01:00

47 lines
1.3 KiB
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
(define-public scalapack-newer
(package
(inherit scalapack)
(name "scalapack-newer")
; (version "2.1.0.29-upstream") ;; need this for compilation > gcc 9
(version "2.1.0-new-upstream")
(source (origin
(method git-fetch)
(uri (git-reference
; (url "https://github.com/scivision/scalapack.git")
; (url "https://github.com/OpenCMISS-Dependencies/newscalapack.git")
(url "https://oauth2:9i-PgbC2w_JEx6DUUqzf@https://gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git")
; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d")
(commit "ea5d20668a6b8bbee645b7ffe44623c623969d33")
))
(sha256
(base32
"02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b"
;FFLAGS
))))
)
)
(define-public scalapack-latest scalapack-newer)
;; scalapack-scivision-newer
;scalapack-newer
;;; glicid/maths.scm ends here