cbc: 2.10.3 -> 2.10.4
This commit is contained in:
parent
88b81aab74
commit
40062e431b
@ -2,14 +2,18 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "cbc";
|
pname = "cbc";
|
||||||
version = "2.10.3";
|
version = "2.10.4";
|
||||||
|
|
||||||
|
# Note: Cbc 2.10.5 contains Clp 1.17.5 which hits this bug
|
||||||
|
# that breaks or-tools https://github.com/coin-or/Clp/issues/130
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.coin-or.org/download/source/Cbc/Cbc-${version}.tgz";
|
url = "https://www.coin-or.org/download/source/Cbc/Cbc-${version}.tgz";
|
||||||
sha256 = "1zzcg40ky5v96s7br2hqlkqdspwrn43kf3757g6c35wl29bq6f5d";
|
sha256 = "0zq66j1vvpslswhzi9yfgkv6vmg7yry4pdmfgqaqw2vhyqxnsy39";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [ "-C" ];
|
# or-tools has a hard dependency on Cbc static libraries, so we build both
|
||||||
|
configureFlags = [ "-C" "--enable-static" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
@ -24,7 +28,6 @@ stdenv.mkDerivation rec {
|
|||||||
license = lib.licenses.epl10;
|
license = lib.licenses.epl10;
|
||||||
maintainers = [ lib.maintainers.eelco ];
|
maintainers = [ lib.maintainers.eelco ];
|
||||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||||
broken = stdenv.isAarch64; # Missing <immintrin.h> after 2.10.0
|
|
||||||
description = "A mixed integer programming solver";
|
description = "A mixed integer programming solver";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user