2004-04-22 16:38:43 +02:00
|
|
|
{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.
|
2005-04-11 10:55:05 +02:00
|
|
|
# Update: 2.4.0 still needs it.
|
2004-01-21 15:50:18 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2005-04-11 10:55:05 +02:00
|
|
|
name = "valgrind-2.4.0";
|
2004-01-21 15:50:18 +01:00
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/valgrind-2.4.0.tar.bz2;
|
2005-04-11 10:55:05 +02:00
|
|
|
md5 = "1d0bd81d368789946d32d18a468ea0cf";
|
2004-01-21 15:50:18 +01:00
|
|
|
};
|
2004-04-22 16:38:43 +02:00
|
|
|
buildInputs = [perl];
|
2004-01-21 15:50:18 +01:00
|
|
|
}
|