Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
746 B
Nix
40 lines
746 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
coin-utils,
|
|
zlib,
|
|
osi,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.17.10";
|
|
pname = "clp";
|
|
src = fetchFromGitHub {
|
|
owner = "coin-or";
|
|
repo = "Clp";
|
|
rev = "releases/${version}";
|
|
hash = "sha256-9IlBT6o1aHAaYw2/39XrUis72P9fesmG3B6i/e+v3mM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
propagatedBuildInputs = [
|
|
zlib
|
|
coin-utils
|
|
osi
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
license = licenses.epl20;
|
|
homepage = "https://github.com/coin-or/Clp";
|
|
description = "Open-source linear programming solver written in C++";
|
|
mainProgram = "clp";
|
|
platforms = platforms.darwin ++ platforms.linux;
|
|
maintainers = [ maintainers.vbgl ];
|
|
};
|
|
}
|