mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
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
1 changed files with 4 additions and 1 deletions
|
@ -479,7 +479,10 @@ large scale eigenvalue problems.")
|
|||
(inputs
|
||||
`(("mpi" ,openmpi)
|
||||
,@(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")))
|
||||
|
||||
(define-public lapack
|
||||
|
|
Loading…
Reference in a new issue