summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/hotspot/default.nix
blob: ee9fbb1119691e4855df316260e7a5aa017267b1 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ stdenv,
  cmake,
  elfutils,
  extra-cmake-modules,
  fetchFromGitHub,
  kconfigwidgets,
  ki18n,
  kitemmodels,
  kitemviews,
  libelf,
  qtbase,
  threadweaver,
}:

stdenv.mkDerivation rec {
  name = "hotspot-${version}";
  version = "1.0.0"; # don't forget to bump `rev` below when you change this

  src = fetchFromGitHub {
    owner = "KDAB";
    repo = "hotspot";
    # TODO: For some reason, `fetchSubmodules` doesn't work when using `rev = "v${version}";`,
    #       so using an explicit commit instead. See #15559
    rev = "352687bf620529e9887616651f123f922cb421a4";
    sha256 = "09ly15yafpk31p3w7h2xixf1xdmx803w9fyb2aq7mhmc7pcxqjsx";
    fetchSubmodules = true;
  };

  buildInputs = [
    cmake
    elfutils
    extra-cmake-modules
    kconfigwidgets
    ki18n
    kitemmodels
    kitemviews
    libelf
    qtbase
    threadweaver
  ];

  # hotspot checks for the presence of third party libraries'
  # git directory to give a nice warning when you forgot to clone
  # submodules; but Nix clones them and removes .git (for reproducibility).
  # So we need to fake their existence here.
  postPatch = ''
    mkdir -p 3rdparty/perfparser/.git
  '';

  enableParallelBuilding = true;

  meta = {
    description = "A GUI for Linux perf";
    longDescription = ''
      hotspot is a GUI replacement for `perf report`.
      It takes a perf.data file, parses and evaluates its contents and
      then displays the result in a graphical way.
    '';
    homepage = "https://github.com/KDAB/hotspot";
    license = with stdenv.lib.licenses; [ gpl2 gpl3 ];
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ nh2 ];
  };
}