nixpkgs/pkgs/development/libraries/libunwind/default.nix
Will Dietz 8ec4bcf1f0 libunwind: 1.3.0 -> 1.3.1
single-commit release:

workaround issue with clang + static alias

https://github.com/libunwind/libunwind/commits/v1.3.1
2019-01-09 12:45:19 -06:00

38 lines
942 B
Nix

{ stdenv, fetchurl, autoreconfHook, xz }:
stdenv.mkDerivation rec {
name = "libunwind-${version}";
version = "1.3.1";
src = fetchurl {
url = "mirror://savannah/libunwind/${name}.tar.gz";
sha256 = "1y0l08k6ak1mqbfj6accf9s5686kljwgsl4vcqpxzk5n74wpm6a3";
};
patches = [ ./backtrace-only-with-glibc.patch ];
nativeBuildInputs = [ autoreconfHook ];
outputs = [ "out" "dev" ];
propagatedBuildInputs = [ xz ];
postInstall = ''
find $out -name \*.la | while read file; do
sed -i 's,-llzma,${xz.out}/lib/liblzma.la,' $file
done
'';
doCheck = false; # fails
meta = with stdenv.lib; {
homepage = https://www.nongnu.org/libunwind;
description = "A portable and efficient API to determine the call-chain of a program";
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
license = licenses.mit;
};
passthru.supportsHost = !stdenv.hostPlatform.isRiscV;
}