me
/
guix
Archived
1
0
Fork 0

gnu: python-cvxopt: Remove dependency on lapack.

* gnu/packages/maths.scm (python-cvxopt): Remove dependency on lapack.

Change-Id: I2a28ecf1ab5ea7683d6b8adf72054d3f86892771
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Romain GARBAGE 2024-03-11 12:07:13 +01:00 committed by Ludovic Courtès
parent b0b556cba4
commit 8b38ecb521
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -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")