about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-clipman-plugin/default.nix
blob: 1f79e0ffb298b3508fee53556c1d7d75f12de895 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ mkXfceDerivation, libXtst, libxfce4ui, xfce4-panel, xfconf }:

mkXfceDerivation {
  category = "panel-plugins";
  pname = "xfce4-clipman-plugin";
  version = "1.6.1";
  sha256 = "03akijvry1n1fkziyvxwcksl4vy4lmnpgd5izjs8jai5sndhsszl";

  buildInputs = [ libXtst libxfce4ui xfce4-panel xfconf ];

  postPatch = ''
    # exo-csource has been dropped from exo
    substituteInPlace panel-plugin/Makefile.am --replace exo-csource xdt-csource
  '';

  meta = {
    description = "Clipboard manager for Xfce panel";
  };
}