mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #23766 from orivej/kcachegrind-kdelibs
kcachegrind: init at 16.2.2
This commit is contained in:
commit
28e78fd3dc
@ -62,6 +62,7 @@ let
|
|||||||
kate = callPackage ./kate.nix {};
|
kate = callPackage ./kate.nix {};
|
||||||
kdenlive = callPackage ./kdenlive.nix {};
|
kdenlive = callPackage ./kdenlive.nix {};
|
||||||
kcalc = callPackage ./kcalc.nix {};
|
kcalc = callPackage ./kcalc.nix {};
|
||||||
|
kcachegrind = callPackage ./kcachegrind.nix {};
|
||||||
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
||||||
kcontacts = callPackage ./kcontacts.nix {};
|
kcontacts = callPackage ./kcontacts.nix {};
|
||||||
kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
|
kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
|
||||||
|
27
pkgs/applications/kde/kcachegrind.nix
Normal file
27
pkgs/applications/kde/kcachegrind.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
kdeApp, lib, kdeWrapper,
|
||||||
|
cmake, automoc4,
|
||||||
|
kdelibs, perl, python, php
|
||||||
|
}:
|
||||||
|
|
||||||
|
kdeWrapper {
|
||||||
|
unwrapped = kdeApp {
|
||||||
|
name = "kcachegrind";
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 ];
|
||||||
|
maintainers = with lib.maintainers; [ orivej ];
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ cmake automoc4 ];
|
||||||
|
buildInputs = [ kdelibs perl python php ];
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
targets = [
|
||||||
|
"bin/kcachegrind"
|
||||||
|
"bin/dprof2calltree" # perl
|
||||||
|
"bin/hotshot2calltree" # python
|
||||||
|
"bin/memprof2calltree" # perl
|
||||||
|
"bin/op2calltree" # perl
|
||||||
|
"bin/pprof2calltree" # php
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user