nixpkgs/pkgs/os-specific/linux/pagemon/default.nix
R. RyanTM e8a8ad192b pagemon: 0.01.16 -> 0.01.17
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pagemon/versions
2019-10-07 21:09:15 -07:00

38 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
pname = "pagemon";
version = "0.01.17";
src = fetchFromGitHub {
sha256 = "11r84nwjvnjyxc3jqhbvlgb89ajfj7v8212mz61dq5ilq5k7xa3d";
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;
};
}