xfce.xfce4-notifyd: enable starting the daemon via DBus

Start daemon via DBus instead of regular session autostart (which is
the default)
This commit is contained in:
José Romildo 2021-09-04 13:11:34 -03:00
parent 1871c113f1
commit b81ba2e919

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, glib, exo, gtk3, libnotify, libxfce4ui, libxfce4util
{ mkXfceDerivation, glib, gtk3, libnotify, libxfce4ui, libxfce4util
, xfce4-panel, xfconf }:
mkXfceDerivation {
@ -8,7 +8,11 @@ mkXfceDerivation {
sha256 = "sha256-Gomehef68+mOgGFDaH48jG51nbaV4ruN925h71w7FuE=";
buildInputs = [ exo gtk3 glib libnotify libxfce4ui libxfce4util xfce4-panel xfconf ];
buildInputs = [ gtk3 glib libnotify libxfce4ui libxfce4util xfce4-panel xfconf ];
configureFlags = [
"--enable-dbus-start-daemon"
];
meta = {
description = "Simple notification daemon for Xfce";