{ lib , stdenv , fetchFromGitHub , clang , cmake }: stdenv.mkDerivation (finalAttrs: { pname = "highs"; version = "1.8.0"; src = fetchFromGitHub { owner = "ERGO-Code"; repo = "HiGHS"; rev = "v${finalAttrs.version}"; hash = "sha256-3ACo6V6Y99XPe4dvurWflNGPjHy3irURv4jYHMrgSms="; }; 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 ]; }; })