nixpkgs/pkgs/applications/kde/kcachegrind.nix

16 lines
386 B
Nix
Raw Normal View History

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