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
parent
b0b556cba4
commit
8b38ecb521
|
@ -402,6 +402,7 @@ triangulations.")
|
||||||
(add-after 'unpack 'find-libraries
|
(add-after 'unpack 'find-libraries
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(setenv "CVXOPT_BLAS_LIB" "openblas")
|
(setenv "CVXOPT_BLAS_LIB" "openblas")
|
||||||
|
(setenv "CVXOPT_LAPACK_LIB" "openblas")
|
||||||
(setenv "CVXOPT_BUILD_FFTW" "1")
|
(setenv "CVXOPT_BUILD_FFTW" "1")
|
||||||
(setenv "CVXOPT_BUILD_GLPK" "1")
|
(setenv "CVXOPT_BUILD_GLPK" "1")
|
||||||
(setenv "CVXOPT_BUILD_GSL" "1")
|
(setenv "CVXOPT_BUILD_GSL" "1")
|
||||||
|
@ -410,7 +411,6 @@ triangulations.")
|
||||||
(list fftw
|
(list fftw
|
||||||
glpk
|
glpk
|
||||||
gsl
|
gsl
|
||||||
lapack
|
|
||||||
openblas
|
openblas
|
||||||
suitesparse))
|
suitesparse))
|
||||||
(home-page "https://www.cvxopt.org")
|
(home-page "https://www.cvxopt.org")
|
||||||
|
|
Reference in New Issue