nlopt: update to version 2.4.2 and add a proper meta section
This commit is contained in:
parent
5258211e32
commit
71e9609cfe
@ -1,19 +1,28 @@
|
|||||||
{ fetchurl, stdenv
|
{ fetchurl, stdenv, octave ? null }:
|
||||||
, withOctave ? true, octave ? null}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "nlopt-2.3";
|
name = "nlopt-2.4.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://ab-initio.mit.edu/nlopt/${name}.tar.gz";
|
url = "http://ab-initio.mit.edu/nlopt/${name}.tar.gz";
|
||||||
sha256 = "1iw2cjgypyqz779f47fz0nmifbrvk4zs4rxi1ibk36f4ly3wg6p6";
|
sha256 = "12cfkkhcdf4zmb6h7y6qvvdvqjs2xf9sjpa3rl3bq76px4yn76c0";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optional withOctave octave;
|
buildInputs = [ octave ];
|
||||||
|
|
||||||
configureFlags = "--with-cxx --enable-shared --with-pic --without-guile --without-python
|
configureFlags = "--with-cxx --enable-shared --with-pic --without-guile --without-python
|
||||||
--without-matlab " +
|
--without-matlab " +
|
||||||
stdenv.lib.optionalString withOctave ("--with-octave " +
|
stdenv.lib.optionalString (octave != null) ("--with-octave " +
|
||||||
"M_INSTALL_DIR=$(out)/${octave.sitePath}/m " +
|
"M_INSTALL_DIR=$(out)/${octave.sitePath}/m " +
|
||||||
"OCT_INSTALL_DIR=$(out)/${octave.sitePath}/oct ");
|
"OCT_INSTALL_DIR=$(out)/${octave.sitePath}/oct ");
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://ab-initio.mit.edu/nlopt/";
|
||||||
|
description = "Free open-source library for nonlinear optimization";
|
||||||
|
license = stdenv.lib.licenses.lgpl21Plus;
|
||||||
|
|
||||||
|
hydraPlatforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user