about summary refs log tree commit diff
path: root/pkgs/development/libraries/nlopt/default.nix
blob: 0936332cd4893a02f741e63290f0391c7efee332 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ fetchurl, stdenv }:

stdenv.mkDerivation rec {
  name = "nlopt-2.2.1";

  src = fetchurl {
    url = "http://ab-initio.mit.edu/nlopt/${name}.tar.gz";
    sha256 = "0p7ri7dcp6vga7jwng7wj9bf2ixk6p5ldxp76r93xkrdixqfngaq";
  };

  configureFlags = "--with-cxx --with-pic --without-guile --without-python --without-octave --without-matlab";
}