Skip to content

Commit

Permalink
libunwind: add a patch to address JuliaLang/julia#3469
Browse files Browse the repository at this point in the history
Should be beneficial to other LLVM+libunwind projects as well (e.g. Pyston)
  • Loading branch information
abbradar committed Sep 3, 2015
1 parent 4028f88 commit 63ceb6a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/development/libraries/libunwind/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, xz }:
{ stdenv, fetchurl, fetchpatch, xz }:

stdenv.mkDerivation rec {
name = "libunwind-1.1";
Expand All @@ -8,7 +8,13 @@ stdenv.mkDerivation rec {
sha256 = "16nhx2pahh9d62mvszc88q226q5lwjankij276fxwrm8wb50zzlx";
};

patches = [ ./libunwind-1.1-lzma.patch ./cve-2015-3239.patch ];
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";
})
];

postPatch = ''
sed -i -e '/LIBLZMA/s:-lzma:-llzma:' configure
Expand Down

0 comments on commit 63ceb6a

Please sign in to comment.