nixpkgs/pkgs/development/libraries/libunwind/default.nix

32 lines
796 B
Nix
Raw Normal View History

2015-04-02 02:33:36 +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 21:17:35 +00: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"
'';
2015-04-02 02:33:36 +00:00
meta = with stdenv.lib; {
homepage = http://www.nongnu.org/libunwind;
description = "A portable and efficient API to determine the call-chain of a program";
2015-04-02 02:33:36 +00:00
platforms = platforms.linux;
license = licenses.gpl2;
};
}