about summary refs log tree commit diff
path: root/pkgs/applications/kde/kcachegrind.nix
blob: 2f270d24224f840c3e799ea550a740fd4a360c85 (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
{
  kdeApp, lib, kdeWrapper,
  cmake, automoc4,
  kdelibs, perl, python, php
}:

kdeWrapper {
  unwrapped = kdeApp {
    name = "kcachegrind";
    meta = {
      license = with lib.licenses; [ gpl2 ];
      maintainers = with lib.maintainers; [ orivej ];
    };
    nativeBuildInputs = [ cmake automoc4 ];
    buildInputs = [ kdelibs perl python php ];
    enableParallelBuilding = true;
  };

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