45 lines
799 B
Nix
45 lines
799 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
clang,
|
|
cmake,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "highs";
|
|
version = "1.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ERGO-Code";
|
|
repo = "HiGHS";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-JuUPnsCNImWpkeh0B//7yM1Wix9SpnfApp8cxX9WeYk=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
outputs = [ "out" ];
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
"$out/bin/highs" --version
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
clang
|
|
cmake
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ERGO-Code/HiGHS";
|
|
description = "Linear optimization software";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
mainProgram = "highs";
|
|
maintainers = with maintainers; [ silky ];
|
|
};
|
|
})
|