2014-07-06 11:37:46 +00:00
|
|
|
{ stdenv, fetchurl, m4, cxx ? true, withStatic ? false }:
|
2006-12-13 22:29:40 +00:00
|
|
|
|
2014-06-01 18:46:33 +00:00
|
|
|
with { inherit (stdenv.lib) optional; };
|
|
|
|
|
2014-07-06 11:37:46 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
2013-10-03 16:09:34 +00:00
|
|
|
name = "gmp-5.1.3";
|
2007-12-14 16:35:31 +00:00
|
|
|
|
2013-03-18 17:20:54 +00:00
|
|
|
src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv
|
|
|
|
urls = [ "mirror://gnu/gmp/${name}.tar.bz2" "ftp://ftp.gmplib.org/pub/${name}/${name}.tar.bz2" ];
|
2013-10-03 16:09:34 +00:00
|
|
|
sha256 = "0q5i39pxrasgn9qdxzpfbwhh11ph80p57x6hf48m74261d97j83m";
|
2006-12-13 22:29:40 +00:00
|
|
|
};
|
2007-12-14 16:35:31 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ m4 ];
|
2009-06-29 11:01:10 +00:00
|
|
|
|
2011-05-03 22:38:52 +00:00
|
|
|
configureFlags =
|
2012-07-06 22:59:40 +00:00
|
|
|
# Build a "fat binary", with routines for several sub-architectures
|
|
|
|
# (x86), except on Solaris where some tests crash with "Memory fault".
|
|
|
|
# See <http://hydra.nixos.org/build/2760931>, for instance.
|
2014-06-01 18:46:33 +00:00
|
|
|
optional (!stdenv.isSunOS) "--enable-fat"
|
|
|
|
++ (if cxx then [ "--enable-cxx" ]
|
2014-05-28 06:35:31 +00:00
|
|
|
else [ "--disable-cxx" ])
|
2014-06-01 18:46:33 +00:00
|
|
|
++ optional (cxx && stdenv.isDarwin) "CPPFLAGS=-fexceptions"
|
|
|
|
++ optional stdenv.is64bit "--with-pic"
|
|
|
|
;
|
2009-06-29 11:01:10 +00:00
|
|
|
|
2006-12-13 22:29:40 +00:00
|
|
|
doCheck = true;
|
2007-12-14 16:35:31 +00:00
|
|
|
|
2010-06-23 14:35:18 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-07-06 11:37:46 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-02-18 11:01:49 +00:00
|
|
|
homepage = "http://gmplib.org/";
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "GNU multiple precision arithmetic library";
|
2014-07-06 11:37:46 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2010-03-11 23:24:56 +00:00
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GMP is a free library for arbitrary precision arithmetic, operating
|
|
|
|
on signed integers, rational numbers, and floating point numbers.
|
|
|
|
There is no practical limit to the precision except the ones implied
|
|
|
|
by the available memory in the machine GMP runs on. GMP has a rich
|
|
|
|
set of functions, and the functions have a regular interface.
|
|
|
|
|
|
|
|
The main target applications for GMP are cryptography applications
|
|
|
|
and research, Internet security applications, algebra systems,
|
|
|
|
computational algebra research, etc.
|
|
|
|
|
|
|
|
GMP is carefully designed to be as fast as possible, both for small
|
|
|
|
operands and for huge operands. The speed is achieved by using
|
|
|
|
fullwords as the basic arithmetic type, by using fast algorithms,
|
|
|
|
with highly optimised assembly code for the most common inner loops
|
|
|
|
for a lot of CPUs, and by a general emphasis on speed.
|
|
|
|
|
|
|
|
GMP is faster than any other bignum library. The advantage for GMP
|
|
|
|
increases with the operand sizes for many operations, since GMP uses
|
|
|
|
asymptotically faster algorithms.
|
|
|
|
'';
|
|
|
|
|
2014-07-06 11:37:46 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.simons ];
|
2007-12-14 16:35:31 +00:00
|
|
|
};
|
2006-12-13 22:29:40 +00:00
|
|
|
}
|
2014-07-06 11:37:46 +00:00
|
|
|
// stdenv.lib.optionalAttrs withStatic { dontDisableStatic = true; }
|
|
|
|
)
|
|
|
|
|