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

26 lines
676 B
Nix
Raw Normal View History

2015-04-02 04:33:36 +02:00
{ stdenv, fetchurl, xz }:
stdenv.mkDerivation rec {
2013-12-20 23:52:47 +01:00
name = "libunwind-1.1";
src = fetchurl {
url = "mirror://savannah/libunwind/${name}.tar.gz";
2013-12-20 23:52:47 +01:00
sha256 = "16nhx2pahh9d62mvszc88q226q5lwjankij276fxwrm8wb50zzlx";
};
2013-12-20 23:55:49 +01:00
2013-12-21 09:48:53 +01:00
propagatedBuildInputs = [ xz ];
2013-12-20 23:55:49 +01: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 04:33:36 +02: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 04:33:36 +02:00
platforms = platforms.linux;
license = licenses.gpl2;
};
}