scs: 3.2.7 -> 3.2.8 (#433462)

This commit is contained in:
Gaétan Lepage
2025-08-15 22:26:10 +02:00
committed by GitHub
2 changed files with 14 additions and 11 deletions
+10 -8
View File
@@ -7,26 +7,27 @@
gfortran,
fixDarwinDylibNames,
nix-update-script,
python3Packages,
}:
assert (!blas.isILP64) && (!lapack.isILP64);
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "scs";
version = "3.2.7";
version = "3.2.8";
src = fetchFromGitHub {
owner = "cvxgrp";
repo = "scs";
tag = version;
hash = "sha256-Y28LrYUuDaXPO8sce1pJIfG3A03rw7BumVgxCIKRn+U=";
tag = finalAttrs.version;
hash = "sha256-BPVuihxLUuBbavKVhgdo1MdzkkDq2Nm/EYiAY/jwiqU=";
};
# Actually link and add libgfortran to the rpath
postPatch = ''
substituteInPlace scs.mk \
--replace "#-lgfortran" "-lgfortran" \
--replace "gcc" "cc"
--replace-fail "# -lgfortran" "-lgfortran" \
--replace-fail "gcc" "cc"
'';
nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
@@ -54,6 +55,7 @@ stdenv.mkDerivation rec {
passthru = {
updateScript = nix-update-script { };
tests.scs-python = python3Packages.scs;
};
meta = {
@@ -62,9 +64,9 @@ stdenv.mkDerivation rec {
Numerical optimization package for solving large-scale convex cone problems
'';
homepage = "https://github.com/cvxgrp/scs";
changelog = "https://github.com/cvxgrp/scs/releases/tag/${version}";
changelog = "https://github.com/cvxgrp/scs/releases/tag/${finalAttrs.version}";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ bhipple ];
};
}
})
@@ -1,6 +1,7 @@
{
lib,
stdenv,
pkgs,
buildPythonPackage,
fetchFromGitHub,
@@ -21,15 +22,15 @@
buildPythonPackage rec {
pname = "scs";
version = "3.2.7.post2";
inherit (pkgs.scs) version;
pyproject = true;
src = fetchFromGitHub {
owner = "bodono";
repo = "scs-python";
tag = version;
hash = "sha256-A626gK30J4e/TrJMXYc+jMgYw7fNcnWfnTeXlyYQNMM=";
fetchSubmodules = true;
hash = "sha256-Dv0LDY6JFFq/dpcDsnU+ErnHJ8RDpaNhrRjEwY31Szk=";
};
postPatch = ''
@@ -63,7 +64,7 @@ buildPythonPackage rec {
Can solve: linear programs (LPs), second-order cone programs (SOCPs), semidefinite programs (SDPs),
exponential cone programs (ECPs), and power cone programs (PCPs), or problems with any combination of those cones.
'';
homepage = "https://github.com/cvxgrp/scs"; # upstream C package
inherit (pkgs.scs.meta) homepage;
downloadPage = "https://github.com/bodono/scs-python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drewrisinger ];