9a8b5d6e15
The author has stated that he does not have time to implement support. There is no use for the `supportsHost` passthru attribute anymore, so let's remove that as well.
31 lines
981 B
Nix
31 lines
981 B
Nix
{ lib, stdenv, fetchurl, perl, libunwind, buildPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "strace";
|
|
version = "5.12";
|
|
|
|
src = fetchurl {
|
|
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-KRce350lL4nJiKTDQN/exmL0WMuMY9hUMdZLq1kR58Q=";
|
|
};
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
# 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
|
|
|
|
postPatch = "patchShebangs --host strace-graph";
|
|
|
|
configureFlags = [ "--enable-mpers=check" ];
|
|
|
|
meta = with 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; [ globin ma27 qyliss ];
|
|
};
|
|
}
|