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.
17 lines
420 B
Nix
17 lines
420 B
Nix
{ mkXfceDerivation, glib, exo, gtk3, libnotify, libxfce4ui, libxfce4util
|
|
, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-notifyd";
|
|
version = "0.4.4";
|
|
|
|
sha256 = "1lmm9h3ych8dz9jpjkxg91f9ln14xs527nxjxsryks00kmqk4kai";
|
|
|
|
buildInputs = [ exo gtk3 glib libnotify libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
meta = {
|
|
description = "Simple notification daemon for Xfce";
|
|
};
|
|
}
|