about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-25 09:44:19 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-27 11:49:08 -0600
commit4e36b374d080285f3512a90b079da2b28fa800f5 (patch)
tree16aa14b824eebdc09833b5dd76a70d8af46c4a6b
parentc1fc4af9ae25998888495cdc8b6d98fc2ec9474d (diff)
heaptrack: Fix packaging errors
-rw-r--r--pkgs/development/tools/profiling/heaptrack/default.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/pkgs/development/tools/profiling/heaptrack/default.nix b/pkgs/development/tools/profiling/heaptrack/default.nix
index 378073d16c00d..5d151b9c9a3e7 100644
--- a/pkgs/development/tools/profiling/heaptrack/default.nix
+++ b/pkgs/development/tools/profiling/heaptrack/default.nix
@@ -1,5 +1,8 @@
-{ stdenv, fetchFromGitHub, cmake, zlib, boost162, libunwind,
-  elfutils, qt5, kde5, sparsehash }:
+{
+  stdenv, fetchFromGitHub, cmake, ecm,
+  zlib, boost162, libunwind, elfutils, sparsehash,
+  qtbase, kio, kitemmodels, threadweaver, kconfigwidgets, kcoreaddons,
+}:
 
 stdenv.mkDerivation rec {
   name = "heaptrack-${version}";
@@ -12,9 +15,11 @@ stdenv.mkDerivation rec {
     sha256 = "0dqchd2r4khv9gzj4n0qjii2nqygkj5jclkji8jbvivx5qwsqznc";
   };
 
-  buildInputs = [ cmake zlib boost162 libunwind elfutils sparsehash
-                  qt5.ecm qt5.qtbase kde5.kio kde5.kitemmodels
-                  kde5.threadweaver kde5.kconfigwidgets kde5.kcoreaddons ];
+  nativeBuildInputs = [ cmake ecm ];
+  buildInputs = [
+    zlib boost162 libunwind elfutils sparsehash
+    qtbase kio kitemmodels threadweaver kconfigwidgets kcoreaddons
+  ];
 
   meta = with stdenv.lib; {
     description = "Heap memory profiler for Linux";