nixpkgs/pkgs/applications/kde/kcachegrind.nix

21 lines
513 B
Nix
Raw Normal View History

2017-03-11 21:56:44 +00:00
{
2017-05-16 15:56:41 +00:00
mkDerivation, lib,
extra-cmake-modules, kdoctools, wrapGAppsHook,
2017-04-21 14:45:54 +00:00
kio, ki18n,
perl, python, php
2017-03-11 21:56:44 +00:00
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
name = "kcachegrind";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ orivej ];
2017-03-11 21:56:44 +00:00
};
2017-05-16 15:56:41 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
propagatedBuildInputs = [ kio ];
buildInputs = [ perl python php ki18n ];
preFixup = ''
gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ perl php python]}")
'';
2017-03-11 21:56:44 +00:00
}