chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / cg / cgl / package.nix
blob3de53c122561665d587f2fadf950e2485c15abdd
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , pkg-config
5 , clp
6 , coin-utils
7 , osi
8 }:
10 stdenv.mkDerivation (finalAttrs: {
11   pname = "cgl";
12   version = "0.60.9";
14   src = fetchFromGitHub {
15     owner = "coin-or";
16     repo = "Cgl";
17     rev = "releases/${finalAttrs.version}";
18     hash = "sha256-E84yCrgpRMjt7owPLPk1ATW+aeHNw8V24DHgkb6boIE=";
19   };
21   nativeBuildInputs = [
22     pkg-config
23   ];
25   buildInputs = [
26     clp
27     coin-utils
28     osi
29   ];
31   meta = with lib; {
32     description = "Cut Generator Library";
33     homepage = "https://github.com/coin-or/Cgl";
34     license = licenses.epl20;
35     maintainers = with maintainers; [ wegank ];
36     platforms = platforms.unix;
37   };