From 8b38ecb5218b86910957bcd3e94eab784de2e0c4 Mon Sep 17 00:00:00 2001 From: Romain GARBAGE Date: Mon, 11 Mar 2024 12:07:13 +0100 Subject: gnu: python-cvxopt: Remove dependency on lapack. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/maths.scm (python-cvxopt): Remove dependency on lapack. Change-Id: I2a28ecf1ab5ea7683d6b8adf72054d3f86892771 Signed-off-by: Ludovic Courtès --- gnu/packages/maths.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index a4c3ac9826..874eb8a6fd 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -402,6 +402,7 @@ triangulations.") (add-after 'unpack 'find-libraries (lambda* (#:key inputs #:allow-other-keys) (setenv "CVXOPT_BLAS_LIB" "openblas") + (setenv "CVXOPT_LAPACK_LIB" "openblas") (setenv "CVXOPT_BUILD_FFTW" "1") (setenv "CVXOPT_BUILD_GLPK" "1") (setenv "CVXOPT_BUILD_GSL" "1") @@ -410,7 +411,6 @@ triangulations.") (list fftw glpk gsl - lapack openblas suitesparse)) (home-page "https://www.cvxopt.org") -- cgit v1.2.3