chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / hi / highs / package.nix
blob75afbbdfa41c8106cfa3e31786a3823e209adc36
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , clang
5 , cmake
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "highs";
10   version = "1.7.2";
12   src = fetchFromGitHub {
13     owner = "ERGO-Code";
14     repo = "HiGHS";
15     rev = "v${finalAttrs.version}";
16     hash = "sha256-q18TfKbZyTZzzPZ8z3U57Yt8q2PSvbkg3qqqiPMgy5Q=";
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   };