mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user