Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
787 B
Nix
52 lines
787 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.7";
|
|
odd-unstable = false;
|
|
|
|
sha256 = "sha256-pgdoy3mZOGMOBwK/cYEl8fre4fZo2lfyWzZnrSYlQ64=";
|
|
|
|
buildInputs = [
|
|
dbus
|
|
gtk3
|
|
gtk-layer-shell
|
|
glib
|
|
libcanberra-gtk3
|
|
libnotify
|
|
libX11
|
|
libxfce4ui
|
|
libxfce4util
|
|
sqlite
|
|
xfce4-panel
|
|
xfconf
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-dbus-start-daemon"
|
|
"--enable-sound"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple notification daemon for Xfce";
|
|
mainProgram = "xfce4-notifyd-config";
|
|
teams = [ teams.xfce ];
|
|
};
|
|
}
|