ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
15 lines
393 B
Nix
15 lines
393 B
Nix
{ mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-cpufreq-plugin";
|
|
version = "1.2.1";
|
|
sha256 = "1p7c4g3yfc19ksdckxpzq1q35jvplh5g55299cvv0afhdb5l8zhv";
|
|
|
|
buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
meta = {
|
|
description = "CPU Freq load plugin for Xfce panel";
|
|
};
|
|
}
|