mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* Valgrind: upgrade to 2.1.1.
svn path=/nixpkgs/trunk/; revision=966
This commit is contained in:
parent
adf48bddba
commit
ec232441a2
2 changed files with 10 additions and 7 deletions
|
@ -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 {
|
stdenv.mkDerivation {
|
||||||
name = "valgrind-2.1.0";
|
name = "valgrind-2.1.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://developer.kde.org/~sewardj/valgrind-2.1.0.tar.bz2;
|
url = http://developer.kde.org/~sewardj/valgrind-2.1.1.tar.bz2;
|
||||||
md5 = "3e4056dd45163a5f555a23ced2f95191";
|
md5 = "0010c3e8f054ecc633151c62044b646d";
|
||||||
# url = http://developer.kde.org/~sewardj/valgrind-2.1.1.tar.bz2;
|
|
||||||
# md5 = "0010c3e8f054ecc633151c62044b646d";
|
|
||||||
};
|
};
|
||||||
|
buildInputs = [perl];
|
||||||
}
|
}
|
||||||
|
|
|
@ -156,7 +156,7 @@ rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
valgrind = (import ../development/tools/misc/valgrind) {
|
valgrind = (import ../development/tools/misc/valgrind) {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv perl;
|
||||||
};
|
};
|
||||||
|
|
||||||
texinfo = (import ../development/tools/misc/texinfo) {
|
texinfo = (import ../development/tools/misc/texinfo) {
|
||||||
|
|
Loading…
Reference in a new issue