stace: add libunwind support (fixes #10515)
I think it's not worth making such a small library optional as in the PR.
This commit is contained in:
parent
c51e330824
commit
1e6097f00a
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, perl }:
|
||||
{ stdenv, fetchurl, perl, libunwind }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "strace-4.10";
|
||||
|
@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ perl ];
|
||||
|
||||
buildInputs = [ libunwind ]; # support -k
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://strace.sourceforge.net/;
|
||||
description = "A system call tracer for Linux";
|
||||
|
|
Loading…
Reference in a new issue