ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
16 lines
437 B
Nix
16 lines
437 B
Nix
{ mkXfceDerivation, gtk3, libXtst, libxfce4ui, libxfce4util, xfce4-panel, xfconf, exo }:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-clipman-plugin";
|
|
version = "1.4.3";
|
|
rev = version;
|
|
sha256 = "1xk79xh1zk0x4r1z9m1dakp79pip0zh3naviybvl1dnpwwfc03gq";
|
|
|
|
buildInputs = [ exo gtk3 libXtst libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
meta = {
|
|
description = "Clipboard manager for Xfce panel";
|
|
};
|
|
}
|