forked from mirrors/nixpkgs
add some versions of cppunit/boost/protobuf, added binutils with gold, added nlopt
svn path=/nixpkgs/trunk/; revision=27134
This commit is contained in:
parent
1625c212d1
commit
565c215340
12
pkgs/development/libraries/nlopt/default.nix
Normal file
12
pkgs/development/libraries/nlopt/default.nix
Normal file
|
@ -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";
|
||||
}
|
Loading…
Reference in a new issue