39 lines
654 B
Nix
39 lines
654 B
Nix
{
|
|
lib,
|
|
mkXfceDerivation,
|
|
exo,
|
|
glib,
|
|
gtk3,
|
|
libXtst,
|
|
libxfce4ui,
|
|
libxfce4util,
|
|
xfce4-panel,
|
|
xfconf,
|
|
xorgproto,
|
|
}:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-cpugraph-plugin";
|
|
version = "1.2.10";
|
|
rev-prefix = "xfce4-cpugraph-plugin-";
|
|
odd-unstable = false;
|
|
sha256 = "sha256-VPelWTtFHmU4ZgWLTzZKbtmQ4LOtVwJvpLG9rHtGoNs=";
|
|
|
|
buildInputs = [
|
|
exo
|
|
glib
|
|
gtk3
|
|
libXtst
|
|
libxfce4ui
|
|
libxfce4util
|
|
xfce4-panel
|
|
xfconf
|
|
xorgproto
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CPU graph show for Xfce panel";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|