nixpkgs/pkgs/tools/system/ps_mem/default.nix

24 lines
586 B
Nix
Raw Normal View History

{ lib, pythonPackages, fetchFromGitHub }:
2017-06-18 15:15:42 +00:00
let
2019-11-02 19:42:19 +00:00
version = "3.13";
2017-06-18 15:15:42 +00:00
pname = "ps_mem";
2019-08-13 21:52:01 +00:00
in pythonPackages.buildPythonApplication {
2017-06-18 15:15:42 +00:00
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "pixelb";
2019-09-08 23:38:31 +00:00
repo = pname;
2019-01-11 18:32:41 +00:00
rev = "v${version}";
2019-11-02 19:42:19 +00:00
sha256 = "0pgi9hvwfbkzvwicqlkwx4rwal1ikza018yxbwpnf7c80zw0zaw9";
2017-06-18 15:15:42 +00:00
};
meta = with lib; {
2017-06-18 15:15:42 +00:00
description = "A utility to accurately report the in core memory usage for a program";
homepage = "https://github.com/pixelb/ps_mem";
2017-06-18 15:15:42 +00:00
license = licenses.lgpl21;
maintainers = [ ];
2017-06-18 15:15:42 +00:00
platforms = platforms.linux;
};
}