2022-09-11 15:47:08 +00:00
|
|
|
{ lib
|
|
|
|
, mkXfceDerivation
|
|
|
|
, glib
|
|
|
|
, gtk3
|
|
|
|
, libnotify
|
|
|
|
, libxfce4ui
|
|
|
|
, libxfce4util
|
|
|
|
, xfce4-panel
|
|
|
|
, xfconf
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
mkXfceDerivation {
|
|
|
|
category = "apps";
|
|
|
|
pname = "xfce4-notifyd";
|
2022-12-28 21:21:41 +00:00
|
|
|
version = "0.6.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
sha256 = "sha256-NUEqQk9EcDl23twbo+DUt7QYZrPmWpsRzmi5wIdolqw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-09-11 15:47:08 +00:00
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
glib
|
|
|
|
libnotify
|
|
|
|
libxfce4ui
|
|
|
|
libxfce4util
|
|
|
|
xfce4-panel
|
|
|
|
xfconf
|
|
|
|
];
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
2021-09-18 10:52:07 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-dbus-start-daemon"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Simple notification daemon for Xfce";
|
2021-12-19 01:06:50 +00:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|