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

# Note: I added the Perl dependency for Valgrind 2.1.1.  It's needed
# to generate some files.  Maybe in stable releases we won't need
# Perl.
# Update: 2.4.0 still needs it.

stdenv.mkDerivation {
  name = "valgrind-2.4.0";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/valgrind-2.4.0.tar.bz2;
    md5 = "1d0bd81d368789946d32d18a468ea0cf";
  };
  buildInputs = [perl];
}