nixpkgs/pkgs/applications/kde/kcachegrind.nix

17 lines
413 B
Nix
Raw Normal View History

2017-03-11 22:56:44 +01:00
{
2017-05-16 17:56:41 +02:00
mkDerivation, lib,
2017-05-17 21:26:11 +02:00
extra-cmake-modules, kdoctools,
karchive, ki18n, kio, perl, python, php, qttools
, kdbusaddons
2017-03-11 22:56:44 +01:00
}:
2017-05-16 17:56:41 +02:00
mkDerivation {
name = "kcachegrind";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ orivej ];
2017-03-11 22:56:44 +01:00
};
2017-05-17 21:26:11 +02:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ karchive ki18n kio perl python php qttools kdbusaddons ];
2017-03-11 22:56:44 +01:00
}