nixpkgs/pkgs/applications/kde/kcachegrind.nix

29 lines
662 B
Nix
Raw Normal View History

2017-03-11 21:56:44 +00:00
{
mkDerivation, lib, kdeWrapper,
2017-04-21 14:45:54 +00:00
extra-cmake-modules, kdoctools,
kio, ki18n,
perl, python, php
2017-03-11 21:56:44 +00:00
}:
kdeWrapper {
unwrapped = mkDerivation {
2017-03-11 21:56:44 +00:00
name = "kcachegrind";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ orivej ];
};
2017-04-21 14:45:54 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ perl python php kio ki18n ];
2017-03-11 21:56:44 +00:00
enableParallelBuilding = true;
};
targets = [
"bin/kcachegrind"
"bin/dprof2calltree" # perl
"bin/hotshot2calltree" # python
"bin/memprof2calltree" # perl
"bin/op2calltree" # perl
"bin/pprof2calltree" # php
];
}