nixpkgs/pkgs/development/tools/misc/strace/default.nix
Alyssa Ross ea1775eeee
strace: remove strace-graph stuff
strace-graph is no longer installed as of strace v5.11[1].  The perl
build input was only needed for the patchShebangs line, but was
causing pkgsStatic.strace to fail to build since pkgsStatic.perl is
currently broken[2].

[1]: 5685c0d033
[2]: https://github.com/NixOS/nixpkgs/pull/133851#issuecomment-920220593
2021-09-15 17:53:51 +00:00

29 lines
920 B
Nix

{ lib, stdenv, fetchurl, perl, libunwind, buildPackages }:
stdenv.mkDerivation rec {
pname = "strace";
version = "5.14";
src = fetchurl {
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-kBvubbXhfeutRTDdn/tNyalsSmVu2+HDFBt8swexHnM=";
};
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 = [ libunwind ]; # support -k
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 ];
};
}