papilo: init at 2.3.0 (#273295)

This commit is contained in:
Arne Keller
2024-12-16 08:16:06 +01:00
committed by GitHub
+48
View File
@@ -0,0 +1,48 @@
{
blas,
boost,
cmake,
fetchFromGitHub,
gfortran12,
lib,
stdenv,
tbb,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "papilo";
version = "2.3.0";
src = fetchFromGitHub {
owner = "scipopt";
repo = "papilo";
rev = "v${finalAttrs.version}";
hash = "sha256-rB8kRyBxd+zn3XFueTQoN16jbFpXMvneqatQm8Hh2Hg=";
};
buildInputs = [
blas
boost
cmake
gfortran12
zlib
];
nativeBuildInputs = [ cmake ];
propagatedBuildInputs = [ tbb ];
strictDeps = true;
doCheck = true;
meta = {
homepage = "https://scipopt.org/";
description = "Parallel Presolve for Integer and Linear Optimization";
license = with lib.licenses; [ lgpl3Plus ];
mainProgram = "papilo";
maintainers = with lib.maintainers; [ david-r-cox ];
platforms = lib.platforms.unix;
};
})