summary refs log tree commit diff
path: root/pkgs/development/tools/misc/valgrind/default.nix
blob: 5dc59a7ca6fef8166ad42551e193b6235cc9ca05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "valgrind-3.2.1";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/valgrind-3.2.1.tar.bz2;
    md5 = "9407d33961186814cef0e6ecedfd6318";
  };

  meta = {
    description = "Award-winning suite of tools for debugging and profiling Linux programs";
  };
}