about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2010-08-09 15:37:14 +0000
committerMichael Raskin <7c6f434c@mail.ru>2010-08-09 15:37:14 +0000
commitbe3d5d34960322c3267de8f074c769e5446daf3a (patch)
tree8ef9a335bbe38ff4ca938c886eab5be2f5a24ebb /pkgs
parent8b4da1a2642490716317ebbed8fd7251282d5d6c (diff)
downloadnixlib-be3d5d34960322c3267de8f074c769e5446daf3a.tar
nixlib-be3d5d34960322c3267de8f074c769e5446daf3a.tar.gz
nixlib-be3d5d34960322c3267de8f074c769e5446daf3a.tar.bz2
nixlib-be3d5d34960322c3267de8f074c769e5446daf3a.tar.lz
nixlib-be3d5d34960322c3267de8f074c769e5446daf3a.tar.xz
nixlib-be3d5d34960322c3267de8f074c769e5446daf3a.tar.zst
nixlib-be3d5d34960322c3267de8f074c769e5446daf3a.zip
Update elfutils: the old ones are inaccessible, and too old to be found on other mirrors
svn path=/nixpkgs/trunk/; revision=23058
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/elfutils/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/elfutils/default.nix b/pkgs/development/tools/misc/elfutils/default.nix
index 655fff50a5bc..ad3fd08e3ac7 100644
--- a/pkgs/development/tools/misc/elfutils/default.nix
+++ b/pkgs/development/tools/misc/elfutils/default.nix
@@ -1,11 +1,14 @@
 {stdenv, fetchurl, m4}:
 
 stdenv.mkDerivation rec {
-  name = "elfutils-0.143";
+  name = "elfutils-0.148";
   
   src = fetchurl {
-    url = "https://fedorahosted.org/releases/e/l/elfutils/${name}.tar.bz2";
-    sha256 = "1zrqs93m6frg7j70a96xdhdb4mnzmqgh91f9bbm39jnmgs50qp23";
+    urls = [
+      "https://fedorahosted.org/releases/e/l/elfutils/${name}.tar.bz2"
+      "mirror://gentoo/distfiles/${name}.tar.bz2"
+      ];
+    sha256 = "1nl7x2gidd2i048yjlvyzhpbca9793z435cw8bsircjxfi5gmswa";
   };
 
   buildInputs = [m4];