2008-06-26 12:20:33 +02:00
|
|
|
{stdenv, fetchurl, gmp}:
|
|
|
|
|
2007-10-26 05:01:44 +02:00
|
|
|
stdenv.mkDerivation {
|
2008-06-26 12:20:33 +02:00
|
|
|
name = "mpfr-2.3.1";
|
2007-10-26 05:01:44 +02:00
|
|
|
|
2008-04-01 18:53:18 +02:00
|
|
|
src = fetchurl {
|
2008-06-26 12:20:33 +02:00
|
|
|
url = http://www.mpfr.org/mpfr-current/mpfr-2.3.1.tar.bz2;
|
|
|
|
sha256 = "0c44va4plxfd9zm7aa24173im38svnb15lbxql5hvxbc9bgzjmyq";
|
|
|
|
};
|
2007-10-26 05:01:44 +02:00
|
|
|
|
2008-06-26 12:20:33 +02:00
|
|
|
buildInputs = [gmp];
|
2007-10-26 05:01:44 +02:00
|
|
|
|
|
|
|
meta = {
|
2008-06-26 12:20:33 +02:00
|
|
|
homepage = http://www.mpfr.org/;
|
|
|
|
description = "Library for multiple-precision floating-point arithmetic";
|
2007-10-26 05:01:44 +02:00
|
|
|
};
|
|
|
|
}
|