summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-06-08 17:49:58 +0100
committerGitHub <noreply@github.com>2018-06-08 17:49:58 +0100
commit72ba567ac1bfe2e7f8cad8c5d9d20f87b0101714 (patch)
treeb6d53a5c4824b490919fe71c0c5cfe49e73ac789 /pkgs/development/tools/misc
parentfcdcfe2de1ab7c3507c8bb68b5fd347ab7f80c74 (diff)
parent0ac4bae6ef5fe0c59bc5264ee1dcdaa90ac40905 (diff)
downloadnixlib-72ba567ac1bfe2e7f8cad8c5d9d20f87b0101714.tar
nixlib-72ba567ac1bfe2e7f8cad8c5d9d20f87b0101714.tar.gz
nixlib-72ba567ac1bfe2e7f8cad8c5d9d20f87b0101714.tar.bz2
nixlib-72ba567ac1bfe2e7f8cad8c5d9d20f87b0101714.tar.lz
nixlib-72ba567ac1bfe2e7f8cad8c5d9d20f87b0101714.tar.xz
nixlib-72ba567ac1bfe2e7f8cad8c5d9d20f87b0101714.tar.zst
nixlib-72ba567ac1bfe2e7f8cad8c5d9d20f87b0101714.zip
Merge pull request #41574 from r-ryantm/auto-update/elfutils
elfutils: 0.170 -> 0.171
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/elfutils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/elfutils/default.nix b/pkgs/development/tools/misc/elfutils/default.nix
index e89aba67999e..9ccac251ab89 100644
--- a/pkgs/development/tools/misc/elfutils/default.nix
+++ b/pkgs/development/tools/misc/elfutils/default.nix
@@ -3,11 +3,11 @@
 # TODO: Look at the hardcoded paths to kernel, modules etc.
 stdenv.mkDerivation rec {
   name = "elfutils-${version}";
-  version = "0.170";
+  version = "0.171";
 
   src = fetchurl {
     url = "https://sourceware.org/elfutils/ftp/${version}/${name}.tar.bz2";
-    sha256 = "0rp0r54z44is49c594qy7hr211nhb00aa5y7z74vsybbaxslg10z";
+    sha256 = "0rph73czyhg7rv1vxrkyf9k12vscyxd688yw36xs7l75zzn87s6c";
   };
 
   patches = ./debug-info-from-env.patch;