2018-08-20 14:43:41 -04:00
|
|
|
{ stdenv, fetchurl, gmp }:
|
2008-06-26 10:20:33 +00:00
|
|
|
|
2013-02-23 13:59:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-31 17:54:03 -06:00
|
|
|
version = "4.0.2";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mpfr";
|
2007-10-26 03:01:44 +00:00
|
|
|
|
2008-04-01 16:53:18 +00:00
|
|
|
src = fetchurl {
|
2019-01-31 17:54:03 -06:00
|
|
|
urls = [
|
|
|
|
#"https://www.mpfr.org/${name}/${name}.tar.xz"
|
2019-08-15 12:41:18 +00:00
|
|
|
"mirror://gnu/mpfr/${pname}-${version}.tar.xz"
|
2019-01-31 17:54:03 -06:00
|
|
|
];
|
|
|
|
sha256 = "12m3amcavhpqygc499s3fzqlb8f2j2rr7fkqsm10xbjfc04fffqx";
|
2008-06-26 10:20:33 +00:00
|
|
|
};
|
2007-10-26 03:01:44 +00:00
|
|
|
|
2017-07-11 12:14:14 +03:00
|
|
|
outputs = [ "out" "dev" "doc" "info" ];
|
2014-08-27 01:14:09 +02:00
|
|
|
|
2015-04-08 11:33:07 +02:00
|
|
|
# mpfr.h requires gmp.h
|
|
|
|
propagatedBuildInputs = [ gmp ];
|
2009-12-18 17:48:31 +00:00
|
|
|
|
2013-06-29 16:56:20 +02:00
|
|
|
configureFlags =
|
2018-08-20 14:43:41 -04:00
|
|
|
stdenv.lib.optional stdenv.hostPlatform.isSunOS "--disable-thread-safe" ++
|
|
|
|
stdenv.lib.optional stdenv.hostPlatform.is64bit "--with-pic";
|
2013-06-29 16:56:20 +02:00
|
|
|
|
2018-01-08 02:19:47 -05:00
|
|
|
doCheck = true; # not cross;
|
2007-10-26 03:01:44 +00:00
|
|
|
|
2010-06-23 14:35:18 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2007-10-26 03:01:44 +00:00
|
|
|
meta = {
|
2018-06-23 04:34:55 -07:00
|
|
|
homepage = https://www.mpfr.org/;
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Library for multiple-precision floating-point arithmetic";
|
2009-02-12 15:26:48 +00: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-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-08-23 18:28:04 +00:00
|
|
|
|
2015-01-13 22:33:24 +01:00
|
|
|
maintainers = [ ];
|
2010-08-23 18:28:04 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2007-10-26 03:01:44 +00:00
|
|
|
};
|
2013-02-23 13:59:59 +00:00
|
|
|
}
|