about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin/default.nix
blob: 74ff2d171044b48461c128dc4c6e7a7f70036c08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ 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;
  };
}