nixpkgs/pkgs/development/tools/analysis/qcachegrind/default.nix

47 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, qmake, qtbase, perl, python, php, kcachegrind, wrapQtAppsHook }:
2017-03-12 20:54:14 +00:00
let
name = lib.replaceStrings ["kcachegrind"] ["qcachegrind"] kcachegrind.name;
2017-03-12 20:54:14 +00:00
2019-08-13 21:52:01 +00:00
in stdenv.mkDerivation {
inherit name;
src = kcachegrind.src;
2017-03-12 20:54:14 +00:00
buildInputs = [ qtbase perl python php ];
2017-03-12 20:54:14 +00:00
nativeBuildInputs = [ qmake wrapQtAppsHook ];
2017-03-12 20:54:14 +00:00
dontWrapQtApps = true;
2017-03-12 20:54:14 +00:00
postInstall = ''
mkdir -p $out/bin
cp -p converters/dprof2calltree $out/bin/dprof2calltree
cp -p converters/hotshot2calltree.in $out/bin/hotshot2calltree
2017-03-12 20:54:14 +00:00
cp -p converters/memprof2calltree $out/bin/memprof2calltree
cp -p converters/op2calltree $out/bin/op2calltree
cp -p converters/pprof2calltree $out/bin/pprof2calltree
chmod -R +x $out/bin/
'' + (if stdenv.isDarwin then ''
mkdir -p $out/Applications
cp cgview/cgview.app/Contents/MacOS/cgview $out/bin
cp -a qcachegrind/qcachegrind.app $out/Applications
'' else ''
install qcachegrind/qcachegrind cgview/cgview -t "$out/bin"
install -Dm644 qcachegrind/qcachegrind.desktop -t "$out/share/applications"
install -Dm644 kcachegrind/32-apps-kcachegrind.png "$out/share/icons/hicolor/32x32/apps/kcachegrind.png"
install -Dm644 kcachegrind/48-apps-kcachegrind.png "$out/share/icons/hicolor/48x48/apps/kcachegrind.png"
2017-03-12 20:54:14 +00:00
'');
preFixup = ''
wrapQtApp "$out/bin/qcachegrind"
'';
meta = with lib; {
2017-03-12 20:54:14 +00:00
description = "A Qt GUI to visualize profiling data";
license = licenses.gpl2Plus;
2017-03-12 20:54:14 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ periklis ];
};
}