nixpkgs-suyu/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin/default.nix
2021-12-08 11:34:00 -03:00

15 lines
446 B
Nix

{ lib, mkXfceDerivation, libXtst, libxfce4ui, xfce4-panel, xfconf }:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-clipman-plugin";
version = "1.6.2";
sha256 = "sha256-RpFVJSq/DxyA5ne1h+Nr3xfL+DTzg1cTqIDVOPC/pF4=";
buildInputs = [ libXtst libxfce4ui xfce4-panel xfconf ];
meta = with lib; {
description = "Clipboard manager for Xfce panel";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}