2017-02-25 15:44:19 +00:00
|
|
|
{
|
2017-02-26 12:49:15 +00:00
|
|
|
stdenv, fetchFromGitHub, cmake, extra-cmake-modules,
|
2018-02-08 02:13:31 +00:00
|
|
|
zlib, boost, libunwind, elfutils, sparsehash,
|
2018-02-08 02:53:49 +00:00
|
|
|
qtbase, kio, kitemmodels, threadweaver, kconfigwidgets, kcoreaddons, kdiagram
|
2017-02-25 15:44:19 +00:00
|
|
|
}:
|
2017-02-14 11:19:40 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "heaptrack-${version}";
|
2018-05-21 21:36:25 +01:00
|
|
|
version = "1.1.0";
|
2017-02-14 11:19:40 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KDE";
|
|
|
|
repo = "heaptrack";
|
2018-05-21 21:36:25 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0vgwldl5n41r4y3pv8w29gmyln0k2w6m59zrfw9psm4hkxvivzlx";
|
2017-02-14 11:19:40 +00:00
|
|
|
};
|
|
|
|
|
2017-02-26 12:49:15 +00:00
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
2017-02-25 15:44:19 +00:00
|
|
|
buildInputs = [
|
2018-02-08 02:13:31 +00:00
|
|
|
zlib boost libunwind elfutils sparsehash
|
2018-02-08 02:53:49 +00:00
|
|
|
qtbase kio kitemmodels threadweaver kconfigwidgets kcoreaddons kdiagram
|
2017-02-25 15:44:19 +00:00
|
|
|
];
|
2017-02-14 11:19:40 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Heap memory profiler for Linux";
|
|
|
|
homepage = https://github.com/KDE/heaptrack;
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ gebner ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|