c9a1185765
https://gitlab.xfce.org/apps/xfce4-notifyd/-/compare/xfce4-notifyd-0.9.2...xfce4-notifyd-0.9.3
51 lines
830 B
Nix
51 lines
830 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, dbus
|
|
, glib
|
|
, gtk3
|
|
, gtk-layer-shell
|
|
, libcanberra-gtk3
|
|
, libnotify
|
|
, libX11
|
|
, libxfce4ui
|
|
, libxfce4util
|
|
, sqlite
|
|
, xfce4-panel
|
|
, xfconf
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-notifyd";
|
|
version = "0.9.3";
|
|
odd-unstable = false;
|
|
|
|
sha256 = "sha256-kgTKJAUB/w/6vtNm2Ewb2v62t0kFK+T8e5Q3/nKwrMg=";
|
|
|
|
buildInputs = [
|
|
dbus
|
|
gtk3
|
|
gtk-layer-shell
|
|
glib
|
|
libcanberra-gtk3
|
|
libnotify
|
|
libX11
|
|
libxfce4ui
|
|
libxfce4util
|
|
sqlite
|
|
xfce4-panel
|
|
xfconf
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
configureFlags = [
|
|
"--enable-dbus-start-daemon"
|
|
"--enable-sound"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple notification daemon for Xfce";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|