nixpkgs/pkgs/applications/kde/kcachegrind.nix
2021-05-11 12:15:06 -05:00

17 lines
415 B
Nix

{
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 ];
}