guix-glicid/glicid/packages/maths.scm
2021-11-30 12:05:54 +01:00

51 lines
1.4 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@gitlab.univ-nantes.fr/CCIPL/legacy_code_mirror/scalapack.git")
; (commit "dac3cb9eaad9593a2cc7478f5f4ed63437b0993d")
; (commit "f27386ce4d1b4dc99f7bc5917031ef9dc2c00a72")
(commit "9a4c4d7608ab7ac11e526746082a1ffacc2cd365")
)
)
(file-name "scalapack-univ-9a4c4d760")
(sha256
(base32
"1fp3av7cqb4asfw3ynq4s9kbqgrb7k0lhizzd5isz6xfmrwl1ps6"
;FFLAGS
))))
)
)
(define-public scalapack-latest scalapack-newer)
;; scalapack-scivision-newer
scalapack-newer
;;; glicid/maths.scm ends here