guix-glicid/glicid/packages/algebra.scm

22 lines
432 B
Scheme
Raw Normal View History

2021-11-24 13:40:32 +01:00
(define-module (glicid packages algebra)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (gnu packages algebra)
2021-11-24 13:53:50 +01:00
#:use-module (gnu packages commencement)
2021-11-24 13:40:32 +01:00
)
;;;;;;;;
(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