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