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