2013-06-29 07:56:20 -07:00
|
|
|
{ stdenv, fetchurl, gmp }:
|
2008-06-26 03:20:33 -07:00
|
|
|
|
2013-02-23 05:59:59 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-17 15:41:50 -07:00
|
|
|
name = "mpfr-3.1.3";
|
2007-10-25 20:01:44 -07:00
|
|
|
|
2008-04-01 09:53:18 -07:00
|
|
|
src = fetchurl {
|
2009-12-18 09:48:31 -08:00
|
|
|
url = "mirror://gnu/mpfr/${name}.tar.bz2";
|
2015-07-17 15:41:50 -07:00
|
|
|
sha256 = "1z8akfw9wbmq91vrx04bw86mmnxw2sw5qm5cr8ix5b3w2mcv8fzn";
|
2008-06-26 03:20:33 -07:00
|
|
|
};
|
2007-10-25 20:01:44 -07:00
|
|
|
|
2015-07-17 15:41:50 -07:00
|
|
|
patches = [ ./upstream.patch ];
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2014-08-26 16:14:09 -07:00
|
|
|
|
2015-04-08 02:33:07 -07:00
|
|
|
# mpfr.h requires gmp.h
|
|
|
|
propagatedBuildInputs = [ gmp ];
|
2009-12-18 09:48:31 -08:00
|
|
|
|
2016-02-22 10:32:53 -08:00
|
|
|
# FIXME needs gcc 4.9 in bootstrap tools
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "stackprotector" ];
|
2016-02-22 10:32:53 -08:00
|
|
|
|
2013-06-29 07:56:20 -07:00
|
|
|
configureFlags =
|
2015-11-06 20:59:34 -08:00
|
|
|
stdenv.lib.optional stdenv.isSunOS "--disable-thread-safe" ++
|
2013-06-29 07:56:20 -07:00
|
|
|
stdenv.lib.optional stdenv.is64bit "--with-pic";
|
|
|
|
|
2009-12-18 09:48:31 -08:00
|
|
|
doCheck = true;
|
2007-10-25 20:01:44 -07:00
|
|
|
|
2010-06-23 07:35:18 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2007-10-25 20:01:44 -07:00
|
|
|
meta = {
|
2008-06-26 03:20:33 -07:00
|
|
|
homepage = http://www.mpfr.org/;
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Library for multiple-precision floating-point arithmetic";
|
2009-02-12 07:26:48 -08:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The GNU MPFR library is a C library for multiple-precision
|
|
|
|
floating-point computations with correct rounding. MPFR is
|
|
|
|
based on the GMP multiple-precision library.
|
|
|
|
|
|
|
|
The main goal of MPFR is to provide a library for
|
|
|
|
multiple-precision floating-point computation which is both
|
|
|
|
efficient and has a well-defined semantics. It copies the good
|
|
|
|
ideas from the ANSI/IEEE-754 standard for double-precision
|
|
|
|
floating-point arithmetic (53-bit mantissa).
|
|
|
|
'';
|
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-08-23 11:28:04 -07:00
|
|
|
|
2015-01-13 13:33:24 -08:00
|
|
|
maintainers = [ ];
|
2010-08-23 11:28:04 -07:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2007-10-25 20:01:44 -07:00
|
|
|
};
|
2013-02-23 05:59:59 -08:00
|
|
|
}
|