dfc35f1203
"The test suite is now provided under the terms of
the GNU General Public License version 2 or later."
"All the rest of strace is now provided under the terms of
the GNU Lesser General Public License version 2.1 or later."
> 27739ebccc/NEWS (L4)
31 lines
991 B
Nix
31 lines
991 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 = with licenses; [ lgpl21Plus gpl2Plus ]; # gpl2Plus is for the test suite
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jgeerds globin ];
|
|
};
|
|
}
|