2015-09-03 12:26:38 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, xz }:
|
2008-11-12 15:59:38 +00:00
|
|
|
|
2008-01-28 19:45:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-20 22:52:47 +00:00
|
|
|
name = "libunwind-1.1";
|
2015-09-01 19:33:27 +01:00
|
|
|
|
2008-11-12 15:59:38 +00:00
|
|
|
src = fetchurl {
|
2013-07-14 03:23:06 +01:00
|
|
|
url = "mirror://savannah/libunwind/${name}.tar.gz";
|
2013-12-20 22:52:47 +00:00
|
|
|
sha256 = "16nhx2pahh9d62mvszc88q226q5lwjankij276fxwrm8wb50zzlx";
|
2008-11-12 15:59:38 +00:00
|
|
|
};
|
2013-12-20 22:55:49 +00:00
|
|
|
|
2015-09-03 12:26:38 +01:00
|
|
|
patches = [ ./libunwind-1.1-lzma.patch ./cve-2015-3239.patch
|
|
|
|
# https://lists.nongnu.org/archive/html/libunwind-devel/2014-04/msg00000.html
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/dropbox/pyston/1b2e676417b0f5f17526ece0ed840aa88c744145/libunwind_patches/0001-Change-the-RBP-validation-heuristic-to-allow-size-0-.patch";
|
|
|
|
sha256 = "1a0fsgfxmgd218nscswx7pgyb7rcn2gh6566252xhfvzhgn5i4ha";
|
|
|
|
})
|
|
|
|
];
|
2015-03-29 22:17:35 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/LIBLZMA/s:-lzma:-llzma:' configure
|
|
|
|
'';
|
|
|
|
|
2015-10-28 11:43:35 +00:00
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
|
2013-12-21 08:48:53 +00:00
|
|
|
propagatedBuildInputs = [ xz ];
|
2013-12-20 22:55:49 +00:00
|
|
|
|
2012-04-12 07:18:42 +01:00
|
|
|
preInstall = ''
|
|
|
|
mkdir -p "$out/lib"
|
|
|
|
touch "$out/lib/libunwind-generic.so"
|
|
|
|
'';
|
2015-05-20 05:34:51 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
find $out -name \*.la | while read file; do
|
2015-10-28 11:43:35 +00:00
|
|
|
sed -i 's,-llzma,${xz.out}/lib/liblzma.la,' $file
|
2015-05-20 05:34:51 +01:00
|
|
|
done
|
|
|
|
'';
|
2015-09-01 19:33:27 +01:00
|
|
|
|
2015-04-02 03:33:36 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-11-12 15:59:38 +00:00
|
|
|
homepage = http://www.nongnu.org/libunwind;
|
|
|
|
description = "A portable and efficient API to determine the call-chain of a program";
|
2015-04-02 03:33:36 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2008-11-12 15:59:38 +00:00
|
|
|
};
|
2008-01-28 19:45:30 +00:00
|
|
|
}
|