about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin/default.nix
blob: f138d84189666f3cf46d27cb8891b50f1ae865da (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
37
38
{ lib
, mkXfceDerivation
, exo
, glib
, gtk3
, libXtst
, libxfce4ui
, libxfce4util
, xfce4-panel
, xfconf
, xorgproto
}:

mkXfceDerivation rec {
  category = "panel-plugins";
  pname  = "xfce4-cpugraph-plugin";
  version = "1.2.10";
  rev-prefix = "xfce4-cpugraph-plugin-";
  odd-unstable = false;
  sha256 = "sha256-VPelWTtFHmU4ZgWLTzZKbtmQ4LOtVwJvpLG9rHtGoNs=";

  buildInputs = [
    exo
    glib
    gtk3
    libXtst
    libxfce4ui
    libxfce4util
    xfce4-panel
    xfconf
    xorgproto
  ];

  meta = with lib; {
    description = "CPU graph show for Xfce panel";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
  };
}