depot/third_party/nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

38 lines
599 B
Nix

{ lib
, mkXfceDerivation
, glib
, gtk3
, libX11
, libXtst
, libxfce4ui
, libxfce4util
, qrencode
, xfce4-panel
, xfconf
, wayland
}:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-clipman-plugin";
version = "1.6.5";
sha256 = "sha256-aKcIwlNlaJEHgIq0S7+VG/os49+zRqkZXsQVse4B9oE=";
buildInputs = [
glib
gtk3
libX11
libXtst
libxfce4ui
libxfce4util
qrencode
xfce4-panel
xfconf
wayland
];
meta = with lib; {
description = "Clipboard manager for Xfce panel";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}