1a6039cb45
If a build expressions has set "enableParallelBuilding = true", then the generic builder may utilize more than one CPU core to build that particular expression. This feature works out of the box for GNU Make. Expressions that use other build drivers like Boost.Jam or SCons have to specify appropriate flags such as "-j${NIX_BUILD_CORES}" themselves. svn path=/nixpkgs/trunk/; revision=23042
28 lines
698 B
Nix
28 lines
698 B
Nix
{stdenv, fetchurl, m4, cxx ? true}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gmp-4.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gmp/${name}.tar.bz2";
|
|
sha256 = "0x8prpqi9amfcmi7r4zrza609ai9529pjaq0h4aw51i867064qck";
|
|
};
|
|
|
|
buildNativeInputs = [m4];
|
|
|
|
preConfigure = "ln -sf configfsf.guess config.guess";
|
|
|
|
configureFlags = if cxx then "--enable-cxx" else "--disable-cxx";
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers";
|
|
homepage = http://gmplib.org/;
|
|
license = "LGPL";
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|