841d9c7fc1
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
14 lines
392 B
Nix
14 lines
392 B
Nix
{ mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-cpufreq-plugin";
|
|
version = "1.2.5";
|
|
sha256 = "sha256-r783SIGbVKxmLjCxexrMWjYdK7EgbgcHDFTG8KGjWMc=";
|
|
|
|
buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
meta = {
|
|
description = "CPU Freq load plugin for Xfce panel";
|
|
};
|
|
}
|