2008-06-03 22:56:12 +02:00
|
|
|
{ stdenv, fetchurl, perl, gdb }:
|
2004-01-21 15:50:18 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2009-01-05 11:51:57 +01:00
|
|
|
name = "valgrind-3.4.0";
|
2008-06-03 22:56:12 +02:00
|
|
|
|
2004-01-21 15:50:18 +01:00
|
|
|
src = fetchurl {
|
2009-01-05 11:51:57 +01:00
|
|
|
url = http://valgrind.org/downloads/valgrind-3.4.0.tar.bz2;
|
|
|
|
sha256 = "0x4zbwk9ml3kbjzwh887ahw0pdxcm5h9159qg9kwm7zgn7jlmsnm";
|
2004-01-21 15:50:18 +01:00
|
|
|
};
|
2006-10-11 18:45:55 +02:00
|
|
|
|
2008-06-03 22:56:12 +02:00
|
|
|
# Perl is needed for `cg_annotate'.
|
|
|
|
# GDB is needed to provide a sane default for `--db-command'.
|
|
|
|
buildInputs = [ perl gdb ];
|
|
|
|
|
2007-02-27 11:40:15 +01:00
|
|
|
configureFlags =
|
|
|
|
if stdenv.system == "x86_64-linux" then ["--enable-only64bit"] else [];
|
|
|
|
|
2008-08-19 15:03:08 +02:00
|
|
|
postInstall = ''
|
|
|
|
for i in $out/lib/valgrind/*.supp; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace 'obj:/lib' 'obj:*/lib' \
|
|
|
|
--replace 'obj:/usr/X11R6/lib' 'obj:*/lib' \
|
|
|
|
--replace 'obj:/usr/lib' 'obj:*/lib'
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2006-10-11 18:45:55 +02:00
|
|
|
meta = {
|
2007-12-12 12:12:26 +01:00
|
|
|
homepage = http://www.valgrind.org/;
|
2008-06-03 22:56:12 +02:00
|
|
|
description = "Valgrind, a debugging and profiling tool suite";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Valgrind is an award-winning instrumentation framework for
|
|
|
|
building dynamic analysis tools. There are Valgrind tools that
|
|
|
|
can automatically detect many memory management and threading
|
|
|
|
bugs, and profile your programs in detail. You can also use
|
|
|
|
Valgrind to build new tools.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = "GPLv2+";
|
2006-10-11 18:45:55 +02:00
|
|
|
};
|
2004-01-21 15:50:18 +01:00
|
|
|
}
|