8d76ef7355
I've been working on strace a bit recently, so I might have some useful knowledge if we're ever having problems with it.
33 lines
1023 B
Nix
33 lines
1023 B
Nix
{ lib, stdenv, fetchurl, perl, libunwind, buildPackages }:
|
|
|
|
# libunwind does not have the supportsHost attribute on darwin, thus
|
|
# when this package is evaluated it causes an evaluation error
|
|
assert stdenv.isLinux;
|
|
|
|
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 ];
|
|
|
|
buildInputs = [ perl.out ] ++ lib.optional libunwind.supportsHost 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 ];
|
|
};
|
|
}
|