forked from mirrors/nixpkgs
31 lines
932 B
Nix
31 lines
932 B
Nix
{ stdenv, fetchurl, perl, libunwind, buildPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "strace-${version}";
|
|
version = "4.26";
|
|
|
|
src = fetchurl {
|
|
url = "https://strace.io/files/${version}/${name}.tar.xz";
|
|
sha256 = "070yz8xii8gnb4psiz628zwm5srh266sfb06f7f1qzagxzz2ykbw";
|
|
};
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
buildInputs = stdenv.lib.optional libunwind.supportsHost libunwind; # support -k
|
|
|
|
configureFlags = stdenv.lib.optional (!stdenv.hostPlatform.isx86) "--enable-mpers=check";
|
|
|
|
# fails 1 out of 523 tests with
|
|
# "strace-k.test: failed test: ../../strace -e getpid -k ../stack-fcall output mismatch"
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://strace.io/;
|
|
description = "A system call tracer for Linux";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jgeerds globin ];
|
|
};
|
|
}
|