Upgrade of callgrind to pre-release of 0.10.1

svn path=/nixpkgs/trunk/; revision=4260
This commit is contained in:
Martin Bravenboer 2005-11-11 18:32:37 +00:00
parent 56f1fe73e9
commit dfce6ac924
2 changed files with 8 additions and 4 deletions

View file

@ -6,4 +6,8 @@ cd valgrind-* || fail
make || fail
make install || fail
genericBuild
tar zxvf $src
cd clg3 || fail
./configure --prefix=$out || fail
make || fail
make install || fail

View file

@ -4,12 +4,12 @@
{stdenv, fetchurl, which, perl}:
stdenv.mkDerivation {
name = "callgrind-0.10.0";
name = "callgrind-0.10.1pre";
builder = ./builder.sh;
src = fetchurl {
url = http://kcachegrind.sourceforge.net/callgrind-0.10.0.tar.gz;
md5 = "3bd2afd50fde7db4bd5a59dcb412d5e7";
url = http://losser.st-lab.cs.uu.nl/~mbravenb/clg3-cvs-2005.11.11.tar.gz;
md5 = "c272cff1c567ba154ccc60fe2ff241d8";
};
valgrindsrc = fetchurl {