mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +00:00
18 lines
382 B
Nix
18 lines
382 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
kio, ki18n,
|
|
perl, python, php
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kcachegrind";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ orivej ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [ kio ];
|
|
buildInputs = [ perl python php ki18n ];
|
|
}
|