* Valgrind: upgrade to 2.1.1.

svn path=/nixpkgs/trunk/; revision=966
This commit is contained in:
Eelco Dolstra 2004-04-22 14:38:43 +00:00
parent adf48bddba
commit ec232441a2
2 changed files with 10 additions and 7 deletions

View file

@ -1,11 +1,14 @@
{stdenv, fetchurl}:
{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.
stdenv.mkDerivation {
name = "valgrind-2.1.0";
name = "valgrind-2.1.1";
src = fetchurl {
url = http://developer.kde.org/~sewardj/valgrind-2.1.0.tar.bz2;
md5 = "3e4056dd45163a5f555a23ced2f95191";
# url = http://developer.kde.org/~sewardj/valgrind-2.1.1.tar.bz2;
# md5 = "0010c3e8f054ecc633151c62044b646d";
url = http://developer.kde.org/~sewardj/valgrind-2.1.1.tar.bz2;
md5 = "0010c3e8f054ecc633151c62044b646d";
};
buildInputs = [perl];
}

View file

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