summary refs log tree commit diff
path: root/pkgs/development/tools/profiling/heaptrack
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-02-07 20:53:49 -0600
committerWill Dietz <w@wdtz.org>2018-02-07 20:56:54 -0600
commita90f841769b0478afd39025f32e48038b8a165c8 (patch)
tree1640dc2601eb5995e0a3b7e789524a532599de5a /pkgs/development/tools/profiling/heaptrack
parent427a4cd46301f615ccfb6e93f376eca5e4a46df8 (diff)
downloadnixpkgs-a90f841769b0478afd39025f32e48038b8a165c8.tar
nixpkgs-a90f841769b0478afd39025f32e48038b8a165c8.tar.gz
nixpkgs-a90f841769b0478afd39025f32e48038b8a165c8.tar.bz2
nixpkgs-a90f841769b0478afd39025f32e48038b8a165c8.tar.lz
nixpkgs-a90f841769b0478afd39025f32e48038b8a165c8.tar.xz
nixpkgs-a90f841769b0478afd39025f32e48038b8a165c8.tar.zst
nixpkgs-a90f841769b0478afd39025f32e48038b8a165c8.zip
heaptrack: Add dep on kdiagram for chart goodness
Diffstat (limited to 'pkgs/development/tools/profiling/heaptrack')
-rw-r--r--pkgs/development/tools/profiling/heaptrack/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/profiling/heaptrack/default.nix b/pkgs/development/tools/profiling/heaptrack/default.nix
index 8df9155eb5c..f5f9a15dd00 100644
--- a/pkgs/development/tools/profiling/heaptrack/default.nix
+++ b/pkgs/development/tools/profiling/heaptrack/default.nix
@@ -1,7 +1,7 @@
 {
   stdenv, fetchFromGitHub, cmake, extra-cmake-modules,
   zlib, boost, libunwind, elfutils, sparsehash,
-  qtbase, kio, kitemmodels, threadweaver, kconfigwidgets, kcoreaddons,
+  qtbase, kio, kitemmodels, threadweaver, kconfigwidgets, kcoreaddons, kdiagram
 }:
 
 stdenv.mkDerivation rec {
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ cmake extra-cmake-modules ];
   buildInputs = [
     zlib boost libunwind elfutils sparsehash
-    qtbase kio kitemmodels threadweaver kconfigwidgets kcoreaddons
+    qtbase kio kitemmodels threadweaver kconfigwidgets kcoreaddons kdiagram
   ];
 
   meta = with stdenv.lib; {