summary refs log tree commit diff
path: root/pkgs/applications/kde/kcachegrind.nix
blob: d43de1fdc366f15636994a60de80e9de6d3b63e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  kdeApp, lib, kdeWrapper,
  extra-cmake-modules, kdoctools,
  kio, ki18n,
  perl, python, php
}:

kdeWrapper {
  unwrapped = kdeApp {
    name = "kcachegrind";
    meta = {
      license = with lib.licenses; [ gpl2 ];
      maintainers = with lib.maintainers; [ orivej ];
    };
    nativeBuildInputs = [ extra-cmake-modules kdoctools ];
    buildInputs = [ perl python php kio ki18n ];
    enableParallelBuilding = true;
  };

  targets = [
    "bin/kcachegrind"
    "bin/dprof2calltree"    # perl
    "bin/hotshot2calltree"  # python
    "bin/memprof2calltree"  # perl
    "bin/op2calltree"       # perl
    "bin/pprof2calltree"    # php
  ];
}