about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/cpustat/default.nix
blob: 84a4fc53933e74505d76673749e264b3aa1e3ded (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
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, stdenv
, fetchFromGitHub
, ncurses
}:

stdenv.mkDerivation rec {
  pname = "cpustat";
  version = "0.02.20";

  src = fetchFromGitHub {
    owner = "ColinIanKing";
    repo ="cpustat";
    rev = "refs/tags/V${version}";
    hash = "sha256-cdHoo2esm772q782kb7mwRwlPXGDNNLHJRbd2si5g7k=";
  };

  buildInputs = [
    ncurses
  ];

  installFlags = [
    "BINDIR=${placeholder "out"}/bin"
    "MANDIR=${placeholder "out"}/share/man/man8"
    "BASHDIR=${placeholder "out"}/share/bash-completion/completions"
  ];

  meta = with lib; {
    description = "CPU usage monitoring tool";
    homepage = "https://github.com/ColinIanKing/cpustat";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ dtzWill ];
    mainProgram = "cpustat";
  };
}