* Moving stuff.

svn path=/nixpkgs/trunk/; revision=10861
This commit is contained in:
Eelco Dolstra
2008-02-26 14:15:37 +00:00
parent a40f5bee8a
commit 639f426905
5 changed files with 2 additions and 2 deletions
@@ -0,0 +1,17 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "valgrind-3.3.0";
src = fetchurl {
url = http://valgrind.org/downloads/valgrind-3.3.0.tar.bz2;
sha256 = "0yllx5a2f5bx18gqz74aikr27zxwpblswn65lqvm9rbzswlq5w2s";
};
configureFlags =
if stdenv.system == "x86_64-linux" then ["--enable-only64bit"] else [];
meta = {
homepage = http://www.valgrind.org/;
description = "Award-winning suite of tools for debugging and profiling Linux programs";
};
}