photoqt: 4.6 -> 4.7 (#361171)
[NixPkgs.git] / pkgs / applications / kde / kcachegrind.nix
blob3648c18934492ee6e7f0a48a9eddaca6e3222f80
2   mkDerivation, lib,
3   extra-cmake-modules, kdoctools,
4   karchive, ki18n, kio, perl, python3, php, qttools,
5   kdbusaddons, makeBinaryWrapper, graphviz
6 }:
8 mkDerivation {
9   pname = "kcachegrind";
10   meta = {
11     homepage = "https://apps.kde.org/kcachegrind/";
12     description = "Profiler frontend";
13     license = with lib.licenses; [ gpl2 ];
14     maintainers = with lib.maintainers; [ orivej ];
15   };
16   nativeBuildInputs = [ extra-cmake-modules kdoctools makeBinaryWrapper ];
17   buildInputs = [ karchive ki18n kio perl python3 php qttools kdbusaddons ];
18   postInstall = ''
19     wrapProgram $out/bin/kcachegrind \
20       --suffix PATH : "${lib.makeBinPath [ graphviz ]}"
21   '';