1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 18:12:46 +00:00
nixpkgs/pkgs/applications/kde/kcachegrind.nix

29 lines
650 B
Nix
Raw Normal View History

2017-03-11 21:56:44 +00:00
{
kdeApp, lib, kdeWrapper,
2017-04-21 15:45:54 +01:00
extra-cmake-modules, kdoctools,
kio, ki18n,
perl, python, php
2017-03-11 21:56:44 +00:00
}:
kdeWrapper {
unwrapped = kdeApp {
name = "kcachegrind";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ orivej ];
};
2017-04-21 15:45:54 +01: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
];
}