Merge pull request #169858 from armeenm/qcachegrind-drop-python

qcachegrind: drop python profiling support
main
davidak 2 years ago committed by GitHub
commit 4494574643
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/development/tools/analysis/qcachegrind/default.nix

@ -1,4 +1,4 @@
{ lib, stdenv, qmake, qtbase, perl, python2, php, kcachegrind, wrapQtAppsHook }: { lib, stdenv, qmake, qtbase, perl, php, kcachegrind, wrapQtAppsHook }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "qcachegrind"; pname = "qcachegrind";
@ -6,7 +6,7 @@ stdenv.mkDerivation {
src = kcachegrind.src; src = kcachegrind.src;
buildInputs = [ qtbase perl python2 php ]; buildInputs = [ qtbase perl php ];
nativeBuildInputs = [ qmake wrapQtAppsHook ]; nativeBuildInputs = [ qmake wrapQtAppsHook ];
@ -15,7 +15,6 @@ stdenv.mkDerivation {
postInstall = '' postInstall = ''
mkdir -p $out/bin mkdir -p $out/bin
cp -p converters/dprof2calltree $out/bin/dprof2calltree cp -p converters/dprof2calltree $out/bin/dprof2calltree
cp -p converters/hotshot2calltree.in $out/bin/hotshot2calltree
cp -p converters/memprof2calltree $out/bin/memprof2calltree cp -p converters/memprof2calltree $out/bin/memprof2calltree
cp -p converters/op2calltree $out/bin/op2calltree cp -p converters/op2calltree $out/bin/op2calltree
cp -p converters/pprof2calltree $out/bin/pprof2calltree cp -p converters/pprof2calltree $out/bin/pprof2calltree

Loading…
Cancel
Save