summary refs log tree commit diff
path: root/pkgs/applications/kde/kcachegrind.nix
blob: 19e01aeebe9ef21d4d5dcd3759390984f0b77fdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kio, ki18n, karchive, qttools,
  perl, python, php
}:

mkDerivation {
  name = "kcachegrind";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ orivej ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [ kio ];
  buildInputs = [ perl python php ki18n karchive qttools ];
}