nixpkgs/pkgs/development/libraries/nlopt/default.nix

37 lines
989 B
Nix
Raw Normal View History

2018-11-02 11:44:08 +00:00
{ fetchurl, stdenv, octave ? null, cmake }:
stdenv.mkDerivation rec {
2018-11-02 11:44:08 +00:00
name = "nlopt-${version}";
version = "2.6.0";
src = fetchurl {
2018-11-02 11:44:08 +00:00
url = "https://github.com/stevengj/nlopt/archive/v${version}.tar.gz";
sha256 = "1asiyilhmx8abshk0d2aia6ykgs4czhg22xcm9z15wgmyp6pfc51";
};
2018-11-02 11:44:08 +00:00
nativeBuildInputs = [ cmake ];
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"
] ++ stdenv.lib.optionals (octave != null) [
"--with-octave"
"M_INSTALL_DIR=$(out)/${octave.sitePath}/m"
"OCT_INSTALL_DIR=$(out)/${octave.sitePath}/oct"
];
meta = {
2018-11-02 11:44:08 +00:00
homepage = "https://nlopt.readthedocs.io/en/latest/";
description = "Free open-source library for nonlinear optimization";
license = stdenv.lib.licenses.lgpl21Plus;
hydraPlatforms = stdenv.lib.platforms.linux;
broken = (octave != null); # cannot cope with Octave 4.x
};
}