nixpkgs/pkgs/development/libraries/nlopt/default.nix
R. RyanTM fea6499091 nlopt: 2.5.0 -> 2.6.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/nlopt/versions
2019-04-27 08:32:49 +02:00

37 lines
989 B
Nix

{ fetchurl, stdenv, octave ? null, cmake }:
stdenv.mkDerivation rec {
name = "nlopt-${version}";
version = "2.6.0";
src = fetchurl {
url = "https://github.com/stevengj/nlopt/archive/v${version}.tar.gz";
sha256 = "1asiyilhmx8abshk0d2aia6ykgs4czhg22xcm9z15wgmyp6pfc51";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ octave ];
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 = {
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
};
}