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