2019-04-23 19:50:23 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, octave ? null }:
|
2011-05-04 11:04:26 +01:00
|
|
|
|
2018-11-19 13:09:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-04-23 19:50:23 +01:00
|
|
|
pname = "nlopt";
|
|
|
|
version = "2.6.1";
|
2011-05-04 11:04:26 +01:00
|
|
|
|
2019-04-23 19:50:23 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stevengj";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1k6x14lgyfhfqpbs7xx8mrgklp8l6jkkcs39zgi2sj3kg6n0hdc9";
|
2011-05-04 11:04:26 +01:00
|
|
|
};
|
|
|
|
|
2018-11-02 11:44:08 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2014-11-01 20:23:03 +00:00
|
|
|
buildInputs = [ octave ];
|
2013-06-17 11:38:19 +01:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-cxx"
|
|
|
|
"--enable-shared"
|
|
|
|
"--with-pic"
|
|
|
|
"--without-guile"
|
|
|
|
"--without-python"
|
|
|
|
"--without-matlab"
|
|
|
|
] ++ stdenv.lib.optionals (octave != null) [
|
|
|
|
"--with-octave"
|
|
|
|
"M_INSTALL_DIR=$(out)/${octave.sitePath}/m"
|
|
|
|
"OCT_INSTALL_DIR=$(out)/${octave.sitePath}/oct"
|
|
|
|
];
|
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";
|
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
|
2011-05-04 11:04:26 +01:00
|
|
|
}
|