mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
heaptrack: init at 2017-02-14
This commit is contained in:
parent
8d853d0190
commit
8493a2d060
26
pkgs/development/tools/profiling/heaptrack/default.nix
Normal file
26
pkgs/development/tools/profiling/heaptrack/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, zlib, boost162, libunwind,
|
||||
elfutils, qt5, kde5, sparsehash }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "heaptrack-${version}";
|
||||
version = "2017-02-14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KDE";
|
||||
repo = "heaptrack";
|
||||
rev = "2469003b3172874e1df7e1f81c56e469b80febdb";
|
||||
sha256 = "0dqchd2r4khv9gzj4n0qjii2nqygkj5jclkji8jbvivx5qwsqznc";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake zlib boost162 libunwind elfutils sparsehash
|
||||
qt5.ecm qt5.qtbase kde5.kio kde5.kitemmodels
|
||||
kde5.threadweaver kde5.kconfigwidgets kde5.kcoreaddons ];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -2190,6 +2190,8 @@ with pkgs;
|
||||
|
||||
hecate = callPackage ../applications/editors/hecate { };
|
||||
|
||||
heaptrack = callPackage ../development/tools/profiling/heaptrack {};
|
||||
|
||||
heimdall = callPackage ../tools/misc/heimdall { };
|
||||
|
||||
hevea = callPackage ../tools/typesetting/hevea { };
|
||||
@ -13156,7 +13158,7 @@ with pkgs;
|
||||
inherit (gnome3) epiphany;
|
||||
|
||||
epic5 = callPackage ../applications/networking/irc/epic5 { };
|
||||
|
||||
|
||||
eq10q = callPackage ../applications/audio/eq10q { };
|
||||
|
||||
errbot = callPackage ../applications/networking/errbot {
|
||||
|
Loading…
Reference in New Issue
Block a user