gnu: arpack-ng-openmpi: Fix build.
* gnu/packages/maths.scm (arpack-ng-openmpi)[arguments]: Inherit arguments from ARPACK-NG. Previously the 'configure' phase would fail due to the lack of a 'configure' script.
This commit is contained in:
parent
26b8cadf88
commit
4f38754180
|
@ -479,7 +479,10 @@ large scale eigenvalue problems.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("mpi" ,openmpi)
|
`(("mpi" ,openmpi)
|
||||||
,@(package-inputs arpack-ng)))
|
,@(package-inputs arpack-ng)))
|
||||||
(arguments `(#:configure-flags '("--enable-mpi")))
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments arpack-ng)
|
||||||
|
((#:configure-flags _ '())
|
||||||
|
''("--enable-mpi"))))
|
||||||
(synopsis "Fortran subroutines for solving eigenvalue problems with MPI")))
|
(synopsis "Fortran subroutines for solving eigenvalue problems with MPI")))
|
||||||
|
|
||||||
(define-public lapack
|
(define-public lapack
|
||||||
|
|
Loading…
Reference in New Issue