* GMP 5.0.5.

svn path=/nixpkgs/branches/stdenv-updates/; revision=34007
This commit is contained in:
Eelco Dolstra 2012-05-07 20:03:12 +00:00
parent 6c36eece34
commit ab55de20c1
2 changed files with 3 additions and 3 deletions

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, m4, cxx ? true }:
stdenv.mkDerivation rec {
name = "gmp-5.0.4";
name = "gmp-5.0.5";
src = fetchurl {
url = "mirror://gnu/gmp/${name}.tar.bz2";
sha256 = "0vx0z5f1q8jjxjp8hcbcvzz8y41zs889nna4r4ahkpsb7vgamm1m";
sha256 = "1jfymbr90mpn0zw5sg001llqnvf2462y77vgjknrmfs1rjn8ln0z";
};
patches = [ ./ignore-bad-cpuid.patch ];

View file

@ -3679,7 +3679,7 @@ let
# GMP 4.3.2 is broken on Darwin, so use 4.3.1.
callPackage ../development/libraries/gmp/4.3.1.nix { }
else
callPackage ../development/libraries/gmp/5.0.4.nix { };
callPackage ../development/libraries/gmp/5.0.5.nix { };
gmpxx = appendToName "with-cxx" (gmp.override { cxx = true; });