2010-04-28 12:36:53 +00:00
|
|
|
{ fetchurl, stdenv, gmp, mpfr }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-11 16:04:44 +00:00
|
|
|
name = "mpc-1.0.1";
|
2010-04-28 12:36:53 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.multiprecision.org/mpc/download/${name}.tar.gz";
|
2013-01-11 16:04:44 +00:00
|
|
|
sha1 = "vxg0rkyn4cs40wr2cp6bbcyr1nnijzlc";
|
2010-04-28 12:36:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp mpfr ];
|
|
|
|
|
2014-08-21 02:30:50 +00:00
|
|
|
CFLAGS = "-I${gmp}/include";
|
|
|
|
|
2010-04-28 12:36:53 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Library for multiprecision complex arithmetic with exact rounding";
|
2010-04-28 12:36:53 +00:00
|
|
|
|
|
|
|
longDescription =
|
2011-03-28 12:04:59 +00:00
|
|
|
'' GNU MPC is a C library for the arithmetic of complex numbers with
|
2010-04-28 12:36:53 +00: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 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-04-28 12:36:53 +00:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2010-04-28 12:36:53 +00:00
|
|
|
};
|
|
|
|
}
|