Start daemon via DBus instead of regular session autostart (which is the default) (cherry picked from commit b81ba2e9195c5959ced35ffa0857ffedf2a1df7c)
21 lines
471 B
Nix
21 lines
471 B
Nix
{ mkXfceDerivation, glib, gtk3, libnotify, libxfce4ui, libxfce4util
|
|
, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-notifyd";
|
|
version = "0.6.2";
|
|
|
|
sha256 = "1q8n7dffyqbfyy6vpqlmnsfpavlc7iz6hhv1h27fkwzswy2rx28s";
|
|
|
|
buildInputs = [ gtk3 glib libnotify libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
configureFlags = [
|
|
"--enable-dbus-start-daemon"
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple notification daemon for Xfce";
|
|
};
|
|
}
|