mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 14:18:38 +02:00
47 lines
1.3 KiB
Scheme
47 lines
1.3 KiB
Scheme
(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
|