diff options
author | Romain GARBAGE <romain.garbage@inria.fr> | 2024-03-11 12:06:43 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-04-04 16:17:11 +0200 |
commit | dc457d969b23a0575fbe71fdb606a7905340e1ec (patch) | |
tree | c954258ad4fb01d75536d13fedca0e405cea5d8f /gnu/packages | |
parent | e7d134c22a0a59edece8726e3a3fa88da8afa9b9 (diff) | |
download | guix-dc457d969b23a0575fbe71fdb606a7905340e1ec.tar.gz guix-dc457d969b23a0575fbe71fdb606a7905340e1ec.zip |
gnu: armadillo: Switch to openblas.
* gnu/packages/maths.scm (armadillo): Switch inputs from lapack to openblas.
Change-Id: I718371f2e95fafc31e5dccddccbc223c111f594d
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/maths.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 37f319d6bc..f3762abcd8 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4989,7 +4989,7 @@ full text searching.") (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no test target (inputs - (list openblas lapack arpack-ng)) + (list openblas arpack-ng)) (home-page "https://arma.sourceforge.net/") (synopsis "C++ linear algebra library") (description |