about summary refs log tree commit diff
path: root/pkgs/development/libraries/mpfr/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-03-25 17:39:02 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-03-25 17:39:02 +0000
commit8bbdba6af3e01a0c1dd38bd2152ff9ca33ba1141 (patch)
tree4b7f2b767dc77fa6e97ff0c6c29e7024406cd2a5 /pkgs/development/libraries/mpfr/default.nix
parentd9213df2c107753963f99e34a100c8e16ed76d06 (diff)
downloadnixlib-8bbdba6af3e01a0c1dd38bd2152ff9ca33ba1141.tar
nixlib-8bbdba6af3e01a0c1dd38bd2152ff9ca33ba1141.tar.gz
nixlib-8bbdba6af3e01a0c1dd38bd2152ff9ca33ba1141.tar.bz2
nixlib-8bbdba6af3e01a0c1dd38bd2152ff9ca33ba1141.tar.lz
nixlib-8bbdba6af3e01a0c1dd38bd2152ff9ca33ba1141.tar.xz
nixlib-8bbdba6af3e01a0c1dd38bd2152ff9ca33ba1141.tar.zst
nixlib-8bbdba6af3e01a0c1dd38bd2152ff9ca33ba1141.zip
* mpfr updated to 2.4.1. Removed the INRIA link since the tarball
  there has a different hash (!).

svn path=/nixpkgs/branches/stdenv-updates/; revision=14709
Diffstat (limited to 'pkgs/development/libraries/mpfr/default.nix')
-rw-r--r--pkgs/development/libraries/mpfr/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/libraries/mpfr/default.nix b/pkgs/development/libraries/mpfr/default.nix
index a6f6f6ff334a..71711983f326 100644
--- a/pkgs/development/libraries/mpfr/default.nix
+++ b/pkgs/development/libraries/mpfr/default.nix
@@ -1,13 +1,10 @@
 {stdenv, fetchurl, gmp}:
 
 stdenv.mkDerivation {
-  name = "mpfr-2.4.0";
+  name = "mpfr-2.4.1";
 
   src = fetchurl {
-    urls = [
-      http://gforge.inria.fr/frs/download.php/16015/mpfr-2.4.0.tar.bz2
-      http://www.mpfr.org/mpfr-2.4.0/mpfr-2.4.0.tar.bz2
-    ];
+    url = http://www.mpfr.org/mpfr-2.4.1/mpfr-2.4.1.tar.bz2;
     sha256 = "17ajw12jfs721igsr6ny3wxz9j1nm618iplc82wyzins5gn52gdy";
   };