2017-06-04 18:29:02 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, gmp, mpfr
|
|
|
|
}:
|
|
|
|
|
2015-01-17 08:47:31 +00:00
|
|
|
let
|
2018-02-03 09:14:42 +00:00
|
|
|
version = "1.1.0";
|
2015-01-17 08:47:31 +00:00
|
|
|
in
|
2010-04-28 13:36:53 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-17 08:47:31 +00:00
|
|
|
name = "libmpc-${version}"; # to avoid clash with the MPD client
|
2010-04-28 13:36:53 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-03 09:14:42 +00:00
|
|
|
url = "mirror://gnu/mpc/mpc-${version}.tar.gz";
|
|
|
|
sha256 = "0biwnhjm3rx3hc0rfpvyniky4lpzsvdcwhmcn7f0h4iw2hwcb1b9";
|
2010-04-28 13:36:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp mpfr ];
|
|
|
|
|
2018-01-08 07:19:47 +00:00
|
|
|
doCheck = true; # not cross;
|
2010-04-28 13:36:53 +01:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Library for multiprecision complex arithmetic with exact rounding";
|
2010-04-28 13:36:53 +01:00
|
|
|
|
|
|
|
longDescription =
|
2011-03-28 13:04:59 +01:00
|
|
|
'' GNU MPC is a C library for the arithmetic of complex numbers with
|
2010-04-28 13:36:53 +01:00
|
|
|
arbitrarily high precision and correct rounding of the result. It is
|
|
|
|
built upon and follows the same principles as GNU MPFR.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://mpc.multiprecision.org/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-04-28 13:36:53 +01:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2010-04-28 13:36:53 +01:00
|
|
|
};
|
|
|
|
}
|