depot/pkgs/desktops/xfce/panel-plugins/xfce4-cpugraph-plugin/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

38 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;
};
}