e812ec2c57
https://gitlab.xfce.org/panel-plugins/xfce4-cpugraph-plugin/-/compare/xfce4-cpugraph-plugin-1.2.8...xfce4-cpugraph-plugin-1.2.10
39 lines
642 B
Nix
39 lines
642 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;
|
|
};
|
|
}
|