mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
2a77afb2c7
https://github.com/xfce-mirror/xfce4-clipman-plugin/compare/xfce4-clipman-plugin-1.6.5...xfce4-clipman-plugin-1.6.6
46 lines
701 B
Nix
46 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;
|
|
};
|
|
}
|