summary refs log tree commit diff
path: root/pkgs/desktops/xfce/panel-plugins/xfce4-cpufreq-plugin/default.nix
blob: 4743099506c68eacde134f54e6a15e275225740c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:

mkXfceDerivation {
  category = "panel-plugins";
  pname = "xfce4-cpufreq-plugin";
  version = "1.2.6";
  sha256 = "sha256-HS+9pBCHy0NmDVUwL8QFDPeVpKyKib8YCwV8fZDL5Uc=";

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

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