mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
heaptrack: Fix packaging errors
This commit is contained in:
parent
c1fc4af9ae
commit
4e36b374d0
|
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "heaptrack-${version}";
|
name = "heaptrack-${version}";
|
||||||
|
@ -12,9 +15,11 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0dqchd2r4khv9gzj4n0qjii2nqygkj5jclkji8jbvivx5qwsqznc";
|
sha256 = "0dqchd2r4khv9gzj4n0qjii2nqygkj5jclkji8jbvivx5qwsqznc";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake zlib boost162 libunwind elfutils sparsehash
|
nativeBuildInputs = [ cmake ecm ];
|
||||||
qt5.ecm qt5.qtbase kde5.kio kde5.kitemmodels
|
buildInputs = [
|
||||||
kde5.threadweaver kde5.kconfigwidgets kde5.kcoreaddons ];
|
zlib boost162 libunwind elfutils sparsehash
|
||||||
|
qtbase kio kitemmodels threadweaver kconfigwidgets kcoreaddons
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Heap memory profiler for Linux";
|
description = "Heap memory profiler for Linux";
|
||||||
|
|
Loading…
Reference in a new issue