diff options
author | Romain GARBAGE <romain.garbage@inria.fr> | 2024-03-11 12:06:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-04-04 16:17:19 +0200 |
commit | 6481610da9359ce1751ec6913e2b7d02eb727693 (patch) | |
tree | 29565fce30c68d2ac3f32d0dcb4e2fd6538d3103 /gnu | |
parent | 0e8011a9987c271f226cebb800ed6dbaa3c282a3 (diff) | |
download | guix-6481610da9359ce1751ec6913e2b7d02eb727693.tar.gz guix-6481610da9359ce1751ec6913e2b7d02eb727693.zip |
gnu: igraph: Switch to openblas.
* gnu/packages/graph.scm (igraph): Switch input dependency from
lapack to openblas.
Change-Id: Idcaada16496d2854cce7375b4d9fa647430206eb
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/graph.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index e3aa6ba478..179ff450ab 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -195,7 +195,7 @@ distributions in empirical data. SIAM Review 51, 661-703 (2009)}).") (list arpack-ng bliss glpk - lapack + ;lapack openblas plfit suitesparse-cxsparse)) |