* GCC 4.3.1. (g++ doesn't work yet though.)

svn path=/nixpkgs/trunk/; revision=12194
This commit is contained in:
Eelco Dolstra
2008-06-26 10:20:33 +00:00
parent 2e8df9e722
commit 34f583224d
8 changed files with 492 additions and 9 deletions

View File

@@ -1,17 +1,17 @@
args: with args;
{stdenv, fetchurl, gmp}:
stdenv.mkDerivation {
name = "mpfr-2.3.0";
name = "mpfr-2.3.1";
src = fetchurl {
url = http://www.mpfr.org/mpfr-current/mpfr-2.3.1.tar.bz2;
sha256 = "0c44va4plxfd9zm7aa24173im38svnb15lbxql5hvxbc9bgzjmyq";
};
url = http://www.mpfr.org/mpfr-current/mpfr-2.3.1.tar.bz2;
sha256 = "0c44va4plxfd9zm7aa24173im38svnb15lbxql5hvxbc9bgzjmyq";
};
buildInputs =[gmp];
buildInputs = [gmp];
meta = {
description = "
Multi Precision Floating arithmetic with correct Rounding.
";
homepage = http://www.mpfr.org/;
description = "Library for multiple-precision floating-point arithmetic";
};
}