2022-04-04 22:13:42 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, octave ? null, libiconv }:
|
2011-05-04 10:04:26 +00:00
|
|
|
|
2018-11-19 13:09:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-04-23 18:50:23 +00:00
|
|
|
pname = "nlopt";
|
2021-12-07 17:29:09 +00:00
|
|
|
version = "2.7.1";
|
2011-05-04 10:04:26 +00:00
|
|
|
|
2019-04-23 18:50:23 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stevengj";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-12-07 17:29:09 +00:00
|
|
|
sha256 = "sha256-TgieCX7yUdTAEblzXY/gCN0r6F9TVDh4RdNDjQdXZ1o=";
|
2011-05-04 10:04:26 +00:00
|
|
|
};
|
|
|
|
|
2022-04-04 22:13:42 +00:00
|
|
|
nativeBuildInputs = [ cmake ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
|
2014-11-01 20:23:03 +00:00
|
|
|
buildInputs = [ octave ];
|
2013-06-17 10:38:19 +00:00
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-cxx"
|
|
|
|
"--enable-shared"
|
|
|
|
"--with-pic"
|
|
|
|
"--without-guile"
|
|
|
|
"--without-python"
|
|
|
|
"--without-matlab"
|
2021-01-21 17:00:13 +00:00
|
|
|
] ++ lib.optionals (octave != null) [
|
2018-07-25 21:44:21 +00:00
|
|
|
"--with-octave"
|
|
|
|
"M_INSTALL_DIR=$(out)/${octave.sitePath}/m"
|
|
|
|
"OCT_INSTALL_DIR=$(out)/${octave.sitePath}/oct"
|
|
|
|
];
|
2014-11-01 20:23:03 +00:00
|
|
|
|
2022-02-26 16:26:33 +00:00
|
|
|
postFixup = ''
|
|
|
|
substituteInPlace $out/lib/cmake/nlopt/NLoptLibraryDepends.cmake --replace \
|
|
|
|
'INTERFACE_INCLUDE_DIRECTORIES "''${_IMPORT_PREFIX}/' 'INTERFACE_INCLUDE_DIRECTORIES "'
|
|
|
|
'';
|
|
|
|
|
2014-11-01 20:23:03 +00:00
|
|
|
meta = {
|
2018-11-02 11:44:08 +00:00
|
|
|
homepage = "https://nlopt.readthedocs.io/en/latest/";
|
2014-11-01 20:23:03 +00:00
|
|
|
description = "Free open-source library for nonlinear optimization";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl21Plus;
|
|
|
|
hydraPlatforms = lib.platforms.linux;
|
2014-11-01 20:23:03 +00:00
|
|
|
};
|
|
|
|
|
2011-05-04 10:04:26 +00:00
|
|
|
}
|