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

mkXfceDerivation {
  category = "panel-plugins";
  pname = "xfce4-netload-plugin";
  version = "1.4.1";
  rev-prefix = "xfce4-netload-plugin-";
  odd-unstable = false;
  sha256 = "sha256-PwbyYi9EeSTKilVXlbseY2zkabcL7o2CGnk2DFFVI94=";

  buildInputs = [
    glib
    gtk3
    libxfce4ui
    libxfce4util
    xfce4-panel
  ];

  meta = with lib; {
    description = "Internet load speed plugin for Xfce4 panel";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
  };
}