pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / hi / highs / package.nix
blob836e947706e5f60bff708d082a4bd8f4c62f484c
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , clang
5 , cmake
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "highs";
10   version = "1.8.0";
12   src = fetchFromGitHub {
13     owner = "ERGO-Code";
14     repo = "HiGHS";
15     rev = "v${finalAttrs.version}";
16     hash = "sha256-3ACo6V6Y99XPe4dvurWflNGPjHy3irURv4jYHMrgSms=";
17   };
19   strictDeps = true;
21   outputs = [ "out" ];
23   doInstallCheck = true;
25   installCheckPhase = ''
26     "$out/bin/highs" --version
27   '';
29   nativeBuildInputs = [ clang cmake ];
31   enableParallelBuilding = true;
33   meta = with lib; {
34     homepage = "https://github.com/ERGO-Code/HiGHS";
35     description = "Linear optimization software";
36     license = licenses.mit;
37     platforms = platforms.all;
38     mainProgram = "highs";
39     maintainers = with maintainers; [ silky ];
40   };