cgl: init at 0.60.8
This commit is contained in:
parent
7c19f30a07
commit
d92a11f550
1 changed files with 38 additions and 0 deletions
38
pkgs/by-name/cg/cgl/package.nix
Normal file
38
pkgs/by-name/cg/cgl/package.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, clp
|
||||
, coin-utils
|
||||
, osi
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "cgl";
|
||||
version = "0.60.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "coin-or";
|
||||
repo = "Cgl";
|
||||
rev = "releases/${finalAttrs.version}";
|
||||
hash = "sha256-nyqrHC6UOKp1wn6Yvk+53oBn60wUqSWEPUrcNTuPN04=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
clp
|
||||
coin-utils
|
||||
osi
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cut Generator Library";
|
||||
homepage = "https://github.com/coin-or/Cgl";
|
||||
license = licenses.epl20;
|
||||
maintainers = with maintainers; [ wegank ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue