2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl, perl, libunwind, buildPackages }:
|
2004-08-04 11:12:26 +01:00
|
|
|
|
2010-01-20 10:55:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "strace";
|
2021-04-26 19:19:54 +01:00
|
|
|
version = "5.12";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2004-08-04 11:12:26 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
|
2021-04-26 19:19:54 +01:00
|
|
|
sha256 = "sha256-KRce350lL4nJiKTDQN/exmL0WMuMY9hUMdZLq1kR58Q=";
|
2010-01-20 10:55:30 +00:00
|
|
|
};
|
|
|
|
|
2018-02-28 01:31:15 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ perl ];
|
2011-06-15 14:28:04 +01:00
|
|
|
|
2021-06-05 03:02:19 +01:00
|
|
|
# On RISC-V platforms, LLVM's libunwind implementation is unsupported by strace.
|
|
|
|
# The build will silently fall back and -k will not work on RISC-V.
|
|
|
|
buildInputs = [ perl.out libunwind ]; # support -k
|
2015-11-11 13:58:52 +00:00
|
|
|
|
2020-06-25 01:53:07 +01:00
|
|
|
postPatch = "patchShebangs --host strace-graph";
|
2020-04-02 21:24:50 +01:00
|
|
|
|
2021-01-06 08:11:55 +00:00
|
|
|
configureFlags = [ "--enable-mpers=check" ];
|
2018-02-20 19:33:56 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2019-12-08 21:26:10 +00:00
|
|
|
homepage = "https://strace.io/";
|
2010-01-20 10:55:30 +00:00
|
|
|
description = "A system call tracer for Linux";
|
2018-12-29 03:27:32 +00:00
|
|
|
license = with licenses; [ lgpl21Plus gpl2Plus ]; # gpl2Plus is for the test suite
|
2013-08-06 22:43:51 +01:00
|
|
|
platforms = platforms.linux;
|
2021-05-04 13:14:59 +01:00
|
|
|
maintainers = with maintainers; [ globin ma27 qyliss ];
|
2004-08-04 11:12:26 +01:00
|
|
|
};
|
|
|
|
}
|