summary refs log tree commit diff
path: root/pkgs/development/libraries/libunwind
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2012-04-12 06:10:44 +0000
committerMichael Raskin <7c6f434c@mail.ru>2012-04-12 06:10:44 +0000
commit65d9b6076de000a1c02147a72158ea12838cdfc7 (patch)
tree5c4030d8a759b248c064ef450acb806804802444 /pkgs/development/libraries/libunwind
parent8794d3ed45c4b3932f9abbe6885d03cbdff8aae8 (diff)
downloadnixpkgs-65d9b6076de000a1c02147a72158ea12838cdfc7.tar
nixpkgs-65d9b6076de000a1c02147a72158ea12838cdfc7.tar.gz
nixpkgs-65d9b6076de000a1c02147a72158ea12838cdfc7.tar.bz2
nixpkgs-65d9b6076de000a1c02147a72158ea12838cdfc7.tar.lz
nixpkgs-65d9b6076de000a1c02147a72158ea12838cdfc7.tar.xz
nixpkgs-65d9b6076de000a1c02147a72158ea12838cdfc7.tar.zst
nixpkgs-65d9b6076de000a1c02147a72158ea12838cdfc7.zip
Updating libunwind
svn path=/nixpkgs/trunk/; revision=33751
Diffstat (limited to 'pkgs/development/libraries/libunwind')
-rw-r--r--pkgs/development/libraries/libunwind/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libunwind/default.nix b/pkgs/development/libraries/libunwind/default.nix
index ea657e8e43d..5bfd76f919b 100644
--- a/pkgs/development/libraries/libunwind/default.nix
+++ b/pkgs/development/libraries/libunwind/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl}:
 
 stdenv.mkDerivation rec {
-  name = "libunwind-0.98.6";
+  name = "libunwind-1.0.1";
   
   src = fetchurl {
     url = "http://download.savannah.nongnu.org/releases/libunwind/${name}.tar.gz";
-    sha256 = "1qfxqkyx4r5dmwajyhvsyyl8zwxs6n2rcg7a61fgfdfp0gxvpzgx";
+    sha256 = "aa95fd184c0b90d95891c2f3bac2c7df708ff016d2a6ee8b2eabb769f864101f";
   };
   
   NIX_CFLAGS_COMPILE = if stdenv.system == "x86_64-linux" then "-fPIC" else "";