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:
Vladimír Čunát 2015-11-11 14:58:52 +01:00
parent c51e330824
commit 1e6097f00a

View file

@ -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";