mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
21 lines
432 B
Scheme
21 lines
432 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)
|
|
)
|
|
|
|
;;;;;;;;
|
|
|
|
(define-public fftw-openmpi-with-fortran
|
|
|
|
(package
|
|
(inherit fftw-openmpi)
|
|
(name "fftw-openmpi-with-fortran")
|
|
(inputs `(("gfortran", gfortran )
|
|
,@(package-inputs fftw-openmpi)))
|
|
|
|
)
|
|
)
|
|
|
|
;;; glicid/maths.scm ends here
|