chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / so / soplex / package.nix
blob90d97c707738473e1bf975f3ea57d6fe933ba449
2   lib,
3   stdenv,
4   cmake,
5   fetchFromGitHub,
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "soplex";
10   version = "7.1.1";
12   src = fetchFromGitHub {
13     owner = "scipopt";
14     repo = "soplex";
15     rev = "release-${builtins.replaceStrings [ "." ] [ "" ] finalAttrs.version}";
16     hash = "sha256-f4PMJz/VHCx5Uk7M9JdE+4Qpf29X3S/umoiAo8NXYrU=";
17   };
19   nativeBuildInputs = [ cmake ];
21   strictDeps = true;
23   doCheck = true;
25   meta = {
26     homepage = "https://scipopt.org";
27     description = "Sequential object-oriented simPlex";
28     license = with lib.licenses; [ asl20 ];
29     mainProgram = "soplex";
30     maintainers = with lib.maintainers; [ david-r-cox ];
31     platforms = lib.platforms.unix;
32   };