bscpkgs/garlic/stages/valgrind.nix

24 lines
289 B
Nix
Raw Normal View History

2020-09-28 19:00:59 +08:00
{
stdenv
, bash
, valgrind
}:
{
program
}:
stdenv.mkDerivation {
name = "valgrind";
preferLocalBuild = true;
phases = [ "installPhase" ];
installPhase = ''
cat > $out <<EOF
#!/bin/sh
exec ${valgrind}/bin/valgrind ${program}
EOF
chmod +x $out
'';
}