ltrace: build with libunwind

This commit is contained in:
Michael Raskin 2018-02-27 07:39:15 +01:00
parent 7569025674
commit aa321ab3c6

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, elfutils }: { stdenv, fetchurl, elfutils, libunwind }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ltrace-0.7.3"; name = "ltrace-0.7.3";
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "00wmbdghqbz6x95m1mcdd3wd46l6hgcr4wggdp049dbifh3qqvqf"; sha256 = "00wmbdghqbz6x95m1mcdd3wd46l6hgcr4wggdp049dbifh3qqvqf";
}; };
buildInputs = [ elfutils ]; buildInputs = [ elfutils libunwind ];
preConfigure = preConfigure =
'' ''
@ -16,9 +16,9 @@ stdenv.mkDerivation rec {
makeFlagsArray=(INSTALL="install -c") makeFlagsArray=(INSTALL="install -c")
''; '';
meta = { meta = with stdenv.lib; {
description = "Library call tracer"; description = "Library call tracer";
homepage = http://www.ltrace.org/; homepage = https://www.ltrace.org/;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
}; };
} }