about summary refs log tree commit diff
path: root/pkgs/development/libraries/nlopt
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-11-01 21:23:03 +0100
committerPeter Simons <simons@cryp.to>2014-11-01 21:23:47 +0100
commit71e9609cfe267b123616387d208d56b7b49b8dc9 (patch)
tree5092584e2c4e7eb749c3600de66a2b30bfd36772 /pkgs/development/libraries/nlopt
parent5258211e32d37027a498f1bf6508f55dddb897fa (diff)
downloadnixlib-71e9609cfe267b123616387d208d56b7b49b8dc9.tar
nixlib-71e9609cfe267b123616387d208d56b7b49b8dc9.tar.gz
nixlib-71e9609cfe267b123616387d208d56b7b49b8dc9.tar.bz2
nixlib-71e9609cfe267b123616387d208d56b7b49b8dc9.tar.lz
nixlib-71e9609cfe267b123616387d208d56b7b49b8dc9.tar.xz
nixlib-71e9609cfe267b123616387d208d56b7b49b8dc9.tar.zst
nixlib-71e9609cfe267b123616387d208d56b7b49b8dc9.zip
nlopt: update to version 2.4.2 and add a proper meta section
Diffstat (limited to 'pkgs/development/libraries/nlopt')
-rw-r--r--pkgs/development/libraries/nlopt/default.nix21
1 files changed, 15 insertions, 6 deletions
diff --git a/pkgs/development/libraries/nlopt/default.nix b/pkgs/development/libraries/nlopt/default.nix
index cc216a59d758..ad1944377271 100644
--- a/pkgs/development/libraries/nlopt/default.nix
+++ b/pkgs/development/libraries/nlopt/default.nix
@@ -1,19 +1,28 @@
-{ fetchurl, stdenv
-, withOctave ? true, octave ? null}:
+{ fetchurl, stdenv, octave ? null }:
 
 stdenv.mkDerivation rec {
-  name = "nlopt-2.3";
+  name = "nlopt-2.4.2";
 
   src = fetchurl {
     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
   --without-matlab " +
-    stdenv.lib.optionalString withOctave ("--with-octave " +
+    stdenv.lib.optionalString (octave != null) ("--with-octave " +
         "M_INSTALL_DIR=$(out)/${octave.sitePath}/m " +
         "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 ];
+  };
+
 }