Done with the help of https://github.com/Mindavi/nixpkgs-mark-broken Tool is still WIP but this is one of the first results. I manually audited the results and removed some results that were not valid. Note that some of these packages maybe should have more constrained platforms set instead of broken set, but I think not being perfectly correct is better than just keep trying to build all these things and never succeeding. Some observations: - Some darwin builds require XCode tools - aarch64-linux builds sometimes suffer from using gcc9 - gcc9 is getting older and misses some new libraries/features - Sometimes tools try to do system detection or expect some explicit settings for platforms that are not x86_64-linux
54 lines
1006 B
Nix
54 lines
1006 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, gfortran
|
|
, pkg-config
|
|
, blas
|
|
, bzip2
|
|
, cbc
|
|
, clp
|
|
, ipopt
|
|
, lapack
|
|
, libamplsolver
|
|
, zlib
|
|
}:
|
|
|
|
assert (!blas.isILP64) && (!lapack.isILP64);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bonmin";
|
|
version = "1.8.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coin-or";
|
|
repo = "Bonmin";
|
|
rev = "releases/${version}";
|
|
sha256 = "sha256-HU25WjvG01oL3U1wG6ivTcYaN51MMxgLdKZ3AkDNe2Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gfortran
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
blas
|
|
bzip2
|
|
cbc
|
|
clp
|
|
ipopt
|
|
lapack
|
|
libamplsolver
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An open-source code for solving general MINLP (Mixed Integer NonLinear Programming) problems";
|
|
homepage = "https://github.com/coin-or/Bonmin";
|
|
license = licenses.epl10;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ aanderse ];
|
|
# never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|