Added kcachegrind

svn path=/nixpkgs/trunk/; revision=4264
This commit is contained in:
Martin Bravenboer 2005-11-12 17:08:51 +00:00
parent ea95a0509e
commit 7bb47c0150
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl, kdelibs}:
stdenv.mkDerivation {
name = "/kcachegrind-0.4.6";
src = fetchurl {
url = http://kcachegrind.sourceforge.net/kcachegrind-0.4.6.tar.gz;
md5 = "4ed60028dcefd6bf626635d5f2f50273";
};
buildInputs = [kdelibs];
}

View File

@ -380,6 +380,10 @@ rec {
inherit fetchurl stdenv which perl;
};
kcachegrind = (import ../development/tools/misc/kcachegrind) {
inherit fetchurl stdenv kdelibs;
};
texinfo = (import ../development/tools/misc/texinfo) {
inherit fetchurl stdenv ncurses;
};