guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7ce4e3a9ba18a946722865510e9ae0957abb110d
Author: Cayetano Santos <[email protected]>
AuthorDate: Sat Feb 28 20:15:04 2026 +0100

    gnu: scip: Add support for lapack.
    
    * gnu/packages/maths.scm (scip)[inputs]: Add lapack.
    [arguments]<#:configure-flags>: Enable corresponding flag.
    [native-inputs]: Add perl and python-minimal-wrapper.
    
    Change-Id: Icd0bd5f890bbf8dfaad8ac07a350f09b8a3bea5f
---
 gnu/packages/maths.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index ba92c98299..e777492e5c 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -10635,15 +10635,18 @@ embedded into other programs via a C++ class 
library.")
       #~(list "-DPAPILO=OFF"
               "-DZIMPL=OFF"
               "-DAMPL=ON"
+              "-DLAPACK=ON"
               "-DIPOPT=OFF"
               (string-append
                "-DSOPLEX_DIR=" #$(this-package-input "soplex")))))
     (inputs (list boost
                   gmp
+                  lapack
                   mpfr
                   readline
                   soplex
                   zlib))
+    (native-inputs (list perl python-minimal-wrapper))
     (home-page "https://www.scipopt.org/";)
     (synopsis "Solving constraint integer programs")
     (description

Reply via email to