depot/third_party/nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

45 lines
701 B
Nix

{ lib
, mkXfceDerivation
, wayland-scanner
, glib
, gtk3
, libX11
, libXtst
, libxfce4ui
, libxfce4util
, qrencode
, xfce4-panel
, xfconf
, wayland
, wlr-protocols
}:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-clipman-plugin";
version = "1.6.6";
sha256 = "sha256-wdEoM4etco+s0+dULkBvWJZ3WBCW3Ph2bdY0E/l5VRc=";
nativeBuildInputs = [
wayland-scanner
];
buildInputs = [
glib
gtk3
libX11
libXtst
libxfce4ui
libxfce4util
qrencode
xfce4-panel
xfconf
wayland
wlr-protocols
];
meta = with lib; {
description = "Clipboard manager for Xfce panel";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}