nixpkgs/pkgs/applications/kde/kcachegrind.nix

17 lines
415 B
Nix
Raw Normal View History

2017-03-11 13:56:44 -08:00
{
2017-05-16 08:56:41 -07:00
mkDerivation, lib,
2017-05-17 12:26:11 -07:00
extra-cmake-modules, kdoctools,
2021-05-03 08:22:00 -07:00
karchive, ki18n, kio, perl, python3, php, qttools,
kdbusaddons
2017-03-11 13:56:44 -08:00
}:
2017-05-16 08:56:41 -07:00
mkDerivation {
2020-12-24 15:05:07 -08:00
pname = "kcachegrind";
2017-05-16 08:56:41 -07:00
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ orivej ];
2017-03-11 13:56:44 -08:00
};
2017-05-17 12:26:11 -07:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2021-03-26 03:01:35 -07:00
buildInputs = [ karchive ki18n kio perl python3 php qttools kdbusaddons ];
2017-03-11 13:56:44 -08:00
}