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

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