2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, xz }:
|
2008-11-12 15:59:38 +00:00
|
|
|
|
2008-01-28 19:45:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-27 01:28:59 +00:00
|
|
|
name = "libunwind-${version}";
|
2019-01-09 18:37:56 +00:00
|
|
|
version = "1.3.1";
|
2015-09-01 18:33:27 +00:00
|
|
|
|
2008-11-12 15:59:38 +00:00
|
|
|
src = fetchurl {
|
2013-07-14 02:23:06 +00:00
|
|
|
url = "mirror://savannah/libunwind/${name}.tar.gz";
|
2019-01-09 18:37:56 +00:00
|
|
|
sha256 = "1y0l08k6ak1mqbfj6accf9s5686kljwgsl4vcqpxzk5n74wpm6a3";
|
2008-11-12 15:59:38 +00:00
|
|
|
};
|
2013-12-20 22:55:49 +00:00
|
|
|
|
2019-01-07 22:26:53 +00:00
|
|
|
patches = [ ./backtrace-only-with-glibc.patch ];
|
2017-07-03 19:52:26 +00:00
|
|
|
|
2017-06-27 01:28:59 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-03-29 21:17:35 +00:00
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-28 11:43:35 +00:00
|
|
|
|
2013-12-21 08:48:53 +00:00
|
|
|
propagatedBuildInputs = [ xz ];
|
2013-12-20 22:55:49 +00:00
|
|
|
|
2015-05-20 04:34:51 +00: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 04:34:51 +00:00
|
|
|
done
|
|
|
|
'';
|
2015-09-01 18:33:27 +00:00
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2015-04-02 02:33:36 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-12-01 17:32:32 +00:00
|
|
|
homepage = https://www.nongnu.org/libunwind;
|
2008-11-12 15:59:38 +00:00
|
|
|
description = "A portable and efficient API to determine the call-chain of a program";
|
2017-06-27 01:28:59 +00:00
|
|
|
maintainers = with maintainers; [ orivej ];
|
2015-04-02 02:33:36 +00:00
|
|
|
platforms = platforms.linux;
|
2017-06-27 01:28:59 +00:00
|
|
|
license = licenses.mit;
|
2008-11-12 15:59:38 +00:00
|
|
|
};
|
2018-02-28 01:31:15 +00:00
|
|
|
|
|
|
|
passthru.supportsHost = !stdenv.hostPlatform.isRiscV;
|
2008-01-28 19:45:30 +00:00
|
|
|
}
|