3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libunwind/default.nix

30 lines
715 B
Nix
Raw Normal View History

2013-12-20 22:55:49 +00:00
{stdenv, fetchurl, xz}:
stdenv.mkDerivation rec {
2013-12-20 22:52:47 +00:00
name = "libunwind-1.1";
src = fetchurl {
url = "mirror://savannah/libunwind/${name}.tar.gz";
2013-12-20 22:52:47 +00:00
sha256 = "16nhx2pahh9d62mvszc88q226q5lwjankij276fxwrm8wb50zzlx";
};
2013-12-20 22:55:49 +00:00
2015-03-29 22:17:35 +01:00
patches = [ ./libunwind-1.1-lzma.patch ];
postPatch = ''
sed -i -e '/LIBLZMA/s:-lzma:-llzma:' configure
'';
2013-12-21 08:48:53 +00:00
propagatedBuildInputs = [ xz ];
2013-12-20 22:55:49 +00:00
NIX_CFLAGS_COMPILE = if stdenv.system == "x86_64-linux" then "-fPIC" else "";
preInstall = ''
mkdir -p "$out/lib"
touch "$out/lib/libunwind-generic.so"
'';
meta = {
homepage = http://www.nongnu.org/libunwind;
description = "A portable and efficient API to determine the call-chain of a program";
};
}