soplex: init at 7.1.0

This commit is contained in:
David Cox
2024-08-08 14:10:42 -07:00
parent 6290195a26
commit f701112c6b
+33
View File
@@ -0,0 +1,33 @@
{
lib,
stdenv,
cmake,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "soplex";
version = "7.1.0";
src = fetchFromGitHub {
owner = "scipopt";
repo = "soplex";
rev = "release-${builtins.replaceStrings [ "." ] [ "" ] finalAttrs.version}";
hash = "sha256-yoXqfaSGYLHJbUcmBkxhmik553L/9XZtb7FjouaIGCg=";
};
nativeBuildInputs = [ cmake ];
strictDeps = true;
doCheck = true;
meta = {
homepage = "https://scipopt.org";
description = "Sequential object-oriented simPlex";
license = with lib.licenses; [ asl20 ];
mainProgram = "soplex";
maintainers = with lib.maintainers; [ david-r-cox ];
platforms = lib.platforms.unix;
};
})