bscpkgs/garlic/stages/strace.nix
2020-10-09 20:12:52 +02:00

30 lines
411 B
Nix

{
stdenv
, strace
, garlicTools
}:
{
nextStage
}:
with garlicTools;
let
program = stageProgram nextStage;
in
stdenv.mkDerivation {
name = "strace";
phases = [ "installPhase" ];
preferLocalBuild = true;
dontPatchShebangs = true;
installPhase = ''
cat > $out <<EOF
#!/bin/sh
exec ${strace}/bin/strace -f ${program}
EOF
chmod +x $out
'';
}