xfce4-13.xfce4-cpufreq-plugin: init at 1.2.0 (#44316)

This commit is contained in:
volth 2018-08-01 20:47:15 +00:00 committed by xeji
parent 63c295caef
commit b129cd165a
2 changed files with 12 additions and 0 deletions

View File

@ -46,6 +46,8 @@ makeScope newScope (self: with self; {
xfce4-battery-plugin = callPackage ./xfce4-battery-plugin { };
xfce4-cpufreq-plugin = callPackage ./xfce4-cpufreq-plugin { };
xfce4-dev-tools = callPackage ./xfce4-dev-tools {
mkXfceDerivation = mkXfceDerivation.override {
xfce4-dev-tools = null;

View File

@ -0,0 +1,10 @@
{ mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
mkXfceDerivation rec {
category = "panel-plugins";
pname = "xfce4-cpufreq-plugin";
version = "1.2.0";
sha256 = "0zhs7b7py1njczmpnib4532fwpnd3vnpqfhss2r136cfgy72kp6g";
buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ];
}