about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/ps_mem/default.nix
blob: 3e7bb301a6b94b48438cd9fbb9dc1da6a2cdf3c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, pythonPackages, fetchFromGitHub }:

let
  version = "3.12";
  pname = "ps_mem";
in pythonPackages.buildPythonApplication rec {
  name = "${pname}-${version}";

  src = fetchFromGitHub {
    owner = "pixelb";
    repo = "${pname}";
    rev = "v${version}";
    sha256 = "0kcxlmfisbwf24p2k72njfyfp22fjr9p9zalg9b4w0yhnlzk24ph";
  };

  meta = with stdenv.lib; {
    description = "A utility to accurately report the in core memory usage for a program";
    homepage = https://github.com/pixelb/ps_mem;
    license = licenses.lgpl21;
    maintainers = [ maintainers.gnidorah ];
    platforms = platforms.linux;
  };
}