2008-08-29 13:53:28 +00:00
|
|
|
{stdenv, fetchurl, m4, cxx ? true }:
|
2006-12-13 22:29:40 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-08-29 13:53:28 +00:00
|
|
|
name = "gmp-4.2.3";
|
2007-12-14 16:35:31 +00:00
|
|
|
|
2006-12-13 22:29:40 +00:00
|
|
|
src = fetchurl {
|
2008-08-29 13:53:28 +00:00
|
|
|
url = mirror://gnu/gmp/gmp-4.2.3.tar.bz2;
|
|
|
|
sha256 = "139b5abc49833832184c0a03ff6fc64c59ef102b420d2a5884ad78af5647414b";
|
2006-12-13 22:29:40 +00:00
|
|
|
};
|
2007-12-14 16:35:31 +00:00
|
|
|
|
2008-09-03 10:30:47 +00:00
|
|
|
buildInputs = [m4];
|
2008-07-15 09:58:11 +00:00
|
|
|
configureFlags = if cxx then "--enable-cxx" else "--disable-cxx";
|
2006-12-13 22:29:40 +00:00
|
|
|
doCheck = true;
|
2007-12-14 16:35:31 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
2006-12-13 22:29:40 +00:00
|
|
|
}
|