about summary refs log tree commit diff
path: root/pkgs/development/libraries/libunwind
diff options
context:
space:
mode:
authorNixpkgs Monitor <none@none>2013-12-21 00:52:47 +0200
committerEvgeny Egorochkin <phreedom@yandex.ru>2013-12-21 02:28:26 +0200
commit8eef07e6b0bc8fe7b1861b9028c5369282181b53 (patch)
treea5035ba41c61b978c0460beb3aee4e3f87c8d1e1 /pkgs/development/libraries/libunwind
parentf3b1680fcc567d4349b6d52747b354f8156aff65 (diff)
downloadnixlib-8eef07e6b0bc8fe7b1861b9028c5369282181b53.tar
nixlib-8eef07e6b0bc8fe7b1861b9028c5369282181b53.tar.gz
nixlib-8eef07e6b0bc8fe7b1861b9028c5369282181b53.tar.bz2
nixlib-8eef07e6b0bc8fe7b1861b9028c5369282181b53.tar.lz
nixlib-8eef07e6b0bc8fe7b1861b9028c5369282181b53.tar.xz
nixlib-8eef07e6b0bc8fe7b1861b9028c5369282181b53.tar.zst
nixlib-8eef07e6b0bc8fe7b1861b9028c5369282181b53.zip
libunwind: update from 1.0.1 to 1.1
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 5c3670e2365c..aeed6975bda0 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-1.0.1";
+  name = "libunwind-1.1";
   
   src = fetchurl {
     url = "mirror://savannah/libunwind/${name}.tar.gz";
-    sha256 = "aa95fd184c0b90d95891c2f3bac2c7df708ff016d2a6ee8b2eabb769f864101f";
+    sha256 = "16nhx2pahh9d62mvszc88q226q5lwjankij276fxwrm8wb50zzlx";
   };
   
   NIX_CFLAGS_COMPILE = if stdenv.system == "x86_64-linux" then "-fPIC" else "";