nixpkgs/pkgs/development/tools/misc/callgrind/builder.sh

10 lines
156 B
Bash
Raw Normal View History

source $stdenv/setup
tar jxvf $valgrindsrc || fail
cd valgrind-* || fail
./configure --prefix=$out || fail
make || fail
make install || fail
genericBuild