astroterm: 1.0.4 -> 1.0.6 (#378908)
[NixPkgs.git] / pkgs / by-name / ps / psstop / package.nix
blob67968128d828cdc1c0c2f3eaf43dc8e51ae197bc
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   pkg-config,
7   glib,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "psstop";
12   version = "1.3";
14   src = fetchFromGitHub {
15     owner = "clearlinux";
16     repo = "psstop";
17     rev = "v${version}";
18     sha256 = "03ir3jjpzm7q8n1qc5jr99hqarr9r529w1zb6f7q4wak2vfj7w9h";
19   };
21   nativeBuildInputs = [
22     autoreconfHook
23     pkg-config
24   ];
26   buildInputs = [ glib ];
28   meta = with lib; {
29     homepage = "https://github.com/clearlinux/psstop";
30     description = "Show processes' memory usage by looking into pss"; # upstream summary
31     license = licenses.gpl3;
32     maintainers = with maintainers; [ dtzWill ];
33     mainProgram = "psstop";
34   };