1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 22:50:49 +00:00
nixpkgs/pkgs/applications/kde/kcachegrind.nix

18 lines
418 B
Nix
Raw Normal View History

2017-03-11 21:56:44 +00:00
{
2017-05-16 16:56:41 +01:00
mkDerivation, lib,
2017-05-17 20:26:11 +01:00
extra-cmake-modules, kdoctools,
kio, ki18n, karchive, qttools,
2017-04-21 15:45:54 +01:00
perl, python, php
2017-03-11 21:56:44 +00:00
}:
2017-05-16 16:56:41 +01: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-17 20:26:11 +01:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-05-16 16:56:41 +01:00
propagatedBuildInputs = [ kio ];
buildInputs = [ perl python php ki18n karchive qttools ];
2017-03-11 21:56:44 +00:00
}