guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 3ad46d722754b70d759e190f9c6f9b100baa0e54
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jan 2 12:16:38 2026 +0000

    gnu: Add scs.
    
    * gnu/packages/maths.scm (scs): New variable.
    
    Change-Id: Iea504b64a1da5cb4d446fe6461bbf4b2a47f4139
---
 gnu/packages/maths.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 879a3c4f00..d47d0773e1 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -3419,6 +3419,30 @@ matrices of small size.")
 with constraints.")
     (license license:asl2.0)))
 
+(define-public scs
+  (package
+    (name "scs")
+    (version "3.2.10")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/cvxgrp/scs";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "00csacax6gh3cj39044iijsy6gkz0d1ac805z13qkllfs6bsvchy"))))
+    (build-system cmake-build-system)
+    (inputs
+     (list lapack
+           openblas))
+    (home-page "https://osqp.org/";)
+    (synopsis "Splitting Conic Solver")
+    (description
+     "SCS (splitting conic solver) is a numerical optimization package for
+solving large-scale convex cone problems.")
+    (license license:expat)))
+
 (define-public ceres
   (package
     (name "ceres-solver")

Reply via email to