bscpkgs/garlic/stages/valgrind.nix

30 lines
416 B
Nix
Raw Normal View History

2020-09-28 19:00:59 +08:00
{
stdenv
, valgrind
2020-10-10 02:12:52 +08:00
, garlicTools
2020-09-28 19:00:59 +08:00
}:
{
2020-10-10 02:12:52 +08:00
nextStage
2020-09-28 19:00:59 +08:00
}:
2020-10-10 02:12:52 +08:00
with garlicTools;
let
program = stageProgram nextStage;
in
stdenv.mkDerivation {
name = "valgrind";
phases = [ "installPhase" ];
preferLocalBuild = true;
dontPatchShebangs = true;
installPhase = ''
cat > $out <<EOF
#!/bin/sh
exec ${valgrind}/bin/valgrind ${program}
EOF
chmod +x $out
'';
}