a9df2bc8b6
* Build callgrind so that it doesn't need its own copy of valgrind. * Add kcachegrind and callgrind to the cache. svn path=/nixpkgs/trunk/; revision=4635
10 lines
206 B
Nix
10 lines
206 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "valgrind-3.1.0";
|
|
src = fetchurl {
|
|
url = http://valgrind.org/downloads/valgrind-3.1.0.tar.bz2;
|
|
md5 = "d92156e9172dc6097e56c69ea9c88013";
|
|
};
|
|
}
|