mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
nlopt: rescue build by dropping support for Octave
This commit is contained in:
parent
c5563b48ba
commit
e7b68767a8
|
@ -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
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -3106,7 +3106,7 @@ with pkgs;
|
|||
|
||||
nkf = callPackage ../tools/text/nkf {};
|
||||
|
||||
nlopt = callPackage ../development/libraries/nlopt {};
|
||||
nlopt = callPackage ../development/libraries/nlopt { octave = null; };
|
||||
|
||||
npapi_sdk = callPackage ../development/libraries/npapi-sdk {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue