about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/nlopt
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/nlopt')
-rw-r--r--nixpkgs/pkgs/development/libraries/nlopt/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/nlopt/default.nix b/nixpkgs/pkgs/development/libraries/nlopt/default.nix
new file mode 100644
index 000000000000..bbbc818db63d
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/nlopt/default.nix
@@ -0,0 +1,36 @@
+{ fetchurl, stdenv, octave ? null, cmake }:
+
+stdenv.mkDerivation rec {
+  name = "nlopt-${version}";
+  version = "2.5.0";
+
+  src = fetchurl {
+    url = "https://github.com/stevengj/nlopt/archive/v${version}.tar.gz";
+    sha256 = "1bmlsdzkw8xbigiihffyb0kdaqbyfn7dr8s5pdgavy7z05bpmpf6";
+  };
+
+  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
+  };
+
+}