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

25 lines
639 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib }:
2018-04-30 18:12:01 +00:00
stdenv.mkDerivation rec {
pname = "psstop";
2018-04-30 18:12:01 +00:00
version = "1.3";
src = fetchFromGitHub {
owner = "clearlinux";
repo = "psstop";
rev = "v${version}";
sha256 = "03ir3jjpzm7q8n1qc5jr99hqarr9r529w1zb6f7q4wak2vfj7w9h";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2018-04-30 18:12:01 +00:00
buildInputs = [ glib ];
meta = with lib; {
homepage = "https://github.com/clearlinux/psstop";
2018-04-30 18:12:01 +00:00
description = "Show processes' memory usage by looking into pss"; # upstream summary
license = licenses.gpl3;
maintainers = with maintainers; [ dtzWill ];
};
}