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

53 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, fetchpatch, autoreconfHook, xz, coreutils }:
stdenv.mkDerivation rec {
pname = "libunwind";
2020-04-06 04:44:48 +00:00
version = "1.4.0";
src = fetchurl {
url = "mirror://savannah/libunwind/${pname}-${version}.tar.gz";
2020-04-06 04:44:48 +00:00
sha256 = "0dc46flppifrv2z0mrdqi60165ghxm1wk0g47vcbyzjdplqwjnfz";
};
2013-12-20 22:55:49 +00:00
patches = [
./backtrace-only-with-glibc.patch
(fetchpatch {
# upstream build fix against -fno-common compilers like >=gcc-10
url = "https://github.com/libunwind/libunwind/commit/29e17d8d2ccbca07c423e3089a6d5ae8a1c9cb6e.patch";
sha256 = "1angwfq6h0jskg6zx8g6w9min38g5mgmrcbppcy5hqn59cgsxbw0";
})
];
postPatch = lib.optionalString stdenv.hostPlatform.isMusl ''
substituteInPlace configure.ac --replace "-lgcc_s" "-lgcc_eh"
'';
2017-06-27 01:28:59 +00:00
nativeBuildInputs = [ autoreconfHook ];
2015-03-29 21:17:35 +00:00
outputs = [ "out" "dev" "devman" ];
# Without latex2man, no man pages are installed despite being
# prebuilt in the source tarball.
configureFlags = [ "LATEX2MAN=${coreutils}/bin/true" ];
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
sed -i 's,-llzma,${xz.out}/lib/liblzma.la,' $file
2015-05-20 04:34:51 +00:00
done
'';
doCheck = false; # fails
meta = with lib; {
homepage = "https://www.nongnu.org/libunwind";
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;
badPlatforms = [ "riscv32-linux" "riscv64-linux" ];
2017-06-27 01:28:59 +00:00
license = licenses.mit;
};
}