88abffb7d2
GitOrigin-RevId: bc9b956714ed6eac5f8888322aac5bc41389defa
20 lines
470 B
Nix
20 lines
470 B
Nix
{ mkXfceDerivation, glib, gtk3, libnotify, libxfce4ui, libxfce4util
|
|
, xfce4-panel, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-notifyd";
|
|
version = "0.6.2";
|
|
|
|
sha256 = "sha256-Gomehef68+mOgGFDaH48jG51nbaV4ruN925h71w7FuE=";
|
|
|
|
buildInputs = [ gtk3 glib libnotify libxfce4ui libxfce4util xfce4-panel xfconf ];
|
|
|
|
configureFlags = [
|
|
"--enable-dbus-start-daemon"
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple notification daemon for Xfce";
|
|
};
|
|
}
|