76 lines
1.5 KiB
Nix
76 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
blas,
|
|
lapack,
|
|
gfortran,
|
|
enableAMPL ? true,
|
|
libamplsolver,
|
|
enableMUMPS ? true,
|
|
mumps,
|
|
mpi,
|
|
enableSPRAL ? true,
|
|
spral,
|
|
}:
|
|
|
|
assert (!blas.isILP64) && (!lapack.isILP64);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ipopt";
|
|
version = "3.14.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coin-or";
|
|
repo = "Ipopt";
|
|
rev = "releases/${version}";
|
|
sha256 = "sha256-ZuiZZMq7NzOm6CCJgMBgEWs8PEfM3pVr2yOWbS42l8U=";
|
|
};
|
|
|
|
CXXDEFS = [
|
|
"-DHAVE_RAND"
|
|
"-DHAVE_CSTRING"
|
|
"-DHAVE_CSTDIO"
|
|
];
|
|
|
|
configureFlags =
|
|
lib.optionals enableAMPL [
|
|
"--with-asl-cflags=-I${libamplsolver}/include"
|
|
"--with-asl-lflags=-lamplsolver"
|
|
]
|
|
++ lib.optionals enableMUMPS [
|
|
"--with-mumps-cflags=-I${mumps}/include"
|
|
"--with-mumps-lflags=-ldmumps"
|
|
]
|
|
++ lib.optionals enableSPRAL [
|
|
"--with-spral-cflags=-I${spral}/include"
|
|
"--with-spral-lflags=-lspral"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gfortran
|
|
];
|
|
buildInputs =
|
|
[
|
|
blas
|
|
lapack
|
|
]
|
|
++ lib.optionals enableAMPL [ libamplsolver ]
|
|
++ lib.optionals enableMUMPS [
|
|
mumps
|
|
mpi
|
|
]
|
|
++ lib.optionals enableSPRAL [ spral ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Software package for large-scale nonlinear optimization";
|
|
homepage = "https://projects.coin-or.org/Ipopt";
|
|
license = lib.licenses.epl10;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ abbradar ];
|
|
};
|
|
}
|