mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
82e15d9914
Main changes:
- Add 'c' key to close pop up windows
- Enable -p option to have the PID or name of the process to monitor
- Fix zoom scaling on memory view
- Don't break on failed seek or read of map info
More:
f172bd17e7/debian/changelog
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pagemon-${version}";
|
|
version = "0.01.08";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "079x8ah33nh4faqcy0jy24x30l40j5m00d57aawaayaq18smqs3f";
|
|
rev = "V${version}";
|
|
repo = "pagemon";
|
|
owner = "ColinIanKing";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
makeFlags = [
|
|
"BINDIR=$(out)/bin"
|
|
"MANDIR=$(out)/share/man/man8"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Interactive memory/page monitor for Linux";
|
|
longDescription = ''
|
|
pagemon is an ncurses based interactive memory/page monitoring tool
|
|
allowing one to browse the memory map of an active running process
|
|
on Linux.
|
|
pagemon reads the PTEs of a given process and display the soft/dirty
|
|
activity in real time. The tool identifies the type of memory mapping
|
|
a page belongs to, so one can easily scan through memory looking at
|
|
pages of memory belonging data, code, heap, stack, anonymous mappings
|
|
or even swapped-out pages.
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|