* Valgrind 3.0.1.

svn path=/nixpkgs/trunk/; revision=4121
This commit is contained in:
Eelco Dolstra 2005-10-24 13:01:49 +00:00
parent 7acd7773b4
commit 2700984b8d
2 changed files with 5 additions and 11 deletions

View File

@ -1,15 +1,9 @@
{stdenv, fetchurl, perl}: {stdenv, fetchurl}:
# 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 { stdenv.mkDerivation {
name = "valgrind-2.4.0"; name = "valgrind-3.0.1";
src = fetchurl { src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/valgrind-2.4.0.tar.bz2; url = http://valgrind.org/downloads/valgrind-3.0.1.tar.bz2;
md5 = "1d0bd81d368789946d32d18a468ea0cf"; md5 = "c29efdb7d1a93440f5644a6769054681";
}; };
buildInputs = [perl];
} }

View File

@ -347,7 +347,7 @@ rec {
}; };
valgrind = (import ../development/tools/misc/valgrind) { valgrind = (import ../development/tools/misc/valgrind) {
inherit fetchurl stdenv perl; inherit fetchurl stdenv;
}; };
texinfo = (import ../development/tools/misc/texinfo) { texinfo = (import ../development/tools/misc/texinfo) {