Skip to content

Commit

Permalink
Merge pull request #23766 from orivej/kcachegrind-kdelibs
Browse files Browse the repository at this point in the history
kcachegrind: init at 16.2.2

(cherry picked from commit 28e78fd)
It's just adding a new package (back).
  • Loading branch information
Thomas Tuegel authored and vcunat committed Mar 12, 2017
1 parent 1f86d1d commit b45aee4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Expand Up @@ -62,6 +62,7 @@ let
kate = callPackage ./kate.nix {};
kdenlive = callPackage ./kdenlive.nix {};
kcalc = callPackage ./kcalc.nix {};
kcachegrind = callPackage ./kcachegrind.nix {};
kcolorchooser = callPackage ./kcolorchooser.nix {};
kcontacts = callPackage ./kcontacts.nix {};
kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
Expand Down
27 changes: 27 additions & 0 deletions pkgs/applications/kde/kcachegrind.nix
@@ -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
];
}

0 comments on commit b45aee4

Please sign in to comment.