mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
27 lines
620 B
Nix
27 lines
620 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "ps_mem";
|
|
version = "3.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pixelb";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-jCfPtPSky/QFk9Xo/tq3W7609Pie1yLC4iS4dqjCa+E=";
|
|
};
|
|
|
|
meta = {
|
|
description = "A utility to accurately report the in core memory usage for a program";
|
|
homepage = "https://github.com/pixelb/ps_mem";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "ps_mem";
|
|
};
|
|
}
|