5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
36 lines
625 B
Nix
36 lines
625 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, exo
|
|
, gtk3
|
|
, libXtst
|
|
, libxfce4ui
|
|
, libxfce4util
|
|
, xfce4-panel
|
|
, xfconf
|
|
, xorgproto
|
|
}:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-cpugraph-plugin";
|
|
version = "1.2.6";
|
|
rev-prefix = "xfce4-cpugraph-plugin-";
|
|
odd-unstable = false;
|
|
sha256 = "sha256-Elm10ZGN93R+1XZ4vJJZZIJ6OcaHpsrH0nQRMMuFnLY=";
|
|
|
|
buildInputs = [
|
|
exo
|
|
gtk3
|
|
libXtst
|
|
libxfce4ui
|
|
libxfce4util
|
|
xfce4-panel
|
|
xfconf
|
|
xorgproto
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CPU graph show for Xfce panel";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|