summary refs log tree commit diff
path: root/pkgs/development/libraries/gmp
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-06-22 19:55:47 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-06-22 19:55:47 +0000
commit8f0f5c403d2b6db5c3d1a65e7938e08730851829 (patch)
treeb1ec392c81c5f67697095c5cc6b573c02625ac28 /pkgs/development/libraries/gmp
parenta830968c53d29a252a738aca8ad78c633432f342 (diff)
* gmp 4.3.1. Hopefully this fixes those weird build errors people
  have been reporting.

svn path=/nixpkgs/branches/stdenv-updates/; revision=16030
Diffstat (limited to 'pkgs/development/libraries/gmp')
-rw-r--r--pkgs/development/libraries/gmp/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gmp/default.nix b/pkgs/development/libraries/gmp/default.nix
index 0b472928d0e8f..fd9534f6dc917 100644
--- a/pkgs/development/libraries/gmp/default.nix
+++ b/pkgs/development/libraries/gmp/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, m4, cxx ? true}:
 
-stdenv.mkDerivation {
-  name = "gmp-4.2.4";
+stdenv.mkDerivation rec {
+  name = "gmp-4.3.1";
 
   src = fetchurl {
-    url = mirror://gnu/gmp/gmp-4.2.4.tar.bz2;
-    sha256 = "0s73xzhwrfqcr1gmhsink1fhfzjlkyk70b1bdyrm76m6b3jv082l";
+    url = "mirror://gnu/gmp/${name}.tar.bz2";
+    sha256 = "1j5pklq36ivg2cim5wfysns229a544lqkimp3mlzkwjl513ra0ma";
   };
 
   buildInputs = [m4];