From 565c215340ffac49dcd1a822392e547fa0617391 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Wed, 4 May 2011 10:04:26 +0000 Subject: [PATCH] add some versions of cppunit/boost/protobuf, added binutils with gold, added nlopt svn path=/nixpkgs/trunk/; revision=27134 --- pkgs/development/libraries/nlopt/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pkgs/development/libraries/nlopt/default.nix diff --git a/pkgs/development/libraries/nlopt/default.nix b/pkgs/development/libraries/nlopt/default.nix new file mode 100644 index 00000000000..0936332cd48 --- /dev/null +++ b/pkgs/development/libraries/nlopt/default.nix @@ -0,0 +1,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"; +}