nlopt: rescue build by dropping support for Octave

This commit is contained in:
Peter Simons
2017-03-06 10:25:56 +01:00
parent c5563b48ba
commit e7b68767a8
2 changed files with 2 additions and 6 deletions

View File

@@ -16,16 +16,12 @@ stdenv.mkDerivation rec {
"M_INSTALL_DIR=$(out)/${octave.sitePath}/m " +
"OCT_INSTALL_DIR=$(out)/${octave.sitePath}/oct ");
preConfigure = ''
find octave -name '*.cc' | xargs sed -i 's|Octave_map|octave_map|g'
'';
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;
broken = true; # cannot cope with Octave 4.x
broken = (octave != null); # cannot cope with Octave 4.x
};
}