summary refs log tree commit diff
path: root/pkgs/development/tools/misc/callgrind/default.nix
blob: 2da38e0f10b3f5f322ed645927ffbac7206b239c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Valgrind has to be in the same prefix and I didn't feel like
# patching. So, valgrind is installed here as well.

{stdenv, fetchurl, which, perl}:

stdenv.mkDerivation {
  name = "callgrind-0.10.1pre";
  builder = ./builder.sh;

  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/clg3-cvs-2005.11.11.tar.gz;
    md5 = "c272cff1c567ba154ccc60fe2ff241d8";
  };

  valgrindsrc = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/valgrind-3.0.1.tar.bz2;
    md5 = "c29efdb7d1a93440f5644a6769054681";
  };

  buildInputs = [which perl];
}