mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 22:28:38 +02:00
33 lines
831 B
Scheme
33 lines
831 B
Scheme
(define-module (glicid packages algebra)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix utils)
|
|
#:use-module (gnu packages algebra)
|
|
#:use-module (gnu packages commencement)
|
|
#:use-module (gnu packages mpi)
|
|
#:use-module (guix download)
|
|
)
|
|
|
|
;;;;;;;;
|
|
|
|
(define-public fftw-openmpi-with-fortran
|
|
|
|
(package
|
|
(inherit fftw-openmpi)
|
|
(name "fftw-openmpi-with-fortran")
|
|
(version "3.3.10")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://www.fftw.org/fftw-"
|
|
version".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0rv4w90b65b2kvjpj8g9bdkl4xqc42q20f5bzpxdrkajk1a35jan"))))
|
|
|
|
(inputs `(("gfortran-toolchain", gfortran-toolchain )
|
|
,@(package-inputs fftw-openmpi)))
|
|
|
|
)
|
|
)
|
|
|
|
|
|
;;; glicid/algebra.scm ends here
|