GNU MPFR 2.4.2.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19042
This commit is contained in:
parent
963a0f8216
commit
246c17dc9e
@ -1,15 +1,17 @@
|
|||||||
{stdenv, fetchurl, gmp}:
|
{stdenv, fetchurl, gmp}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "mpfr-2.4.1";
|
name = "mpfr-2.4.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.mpfr.org/mpfr-2.4.1/mpfr-2.4.1.tar.bz2;
|
url = "mirror://gnu/mpfr/${name}.tar.bz2";
|
||||||
sha256 = "0pj879vbwbik8xkgnxy2ll32ljq3bgqjsqapqasq9rkfbkl90a34";
|
sha256 = "1fpjphja2ridy1wfc53mcbavj4axl28ibvnawj1217flm045mry7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gmp ];
|
buildInputs = [ gmp ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.mpfr.org/;
|
homepage = http://www.mpfr.org/;
|
||||||
description = "GNU MPFR, a library for multiple-precision floating-point arithmetic";
|
description = "GNU MPFR, a library for multiple-precision floating-point arithmetic";
|
||||||
|
Loading…
Reference in New Issue
Block a user