forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / desktops / xfce / applications / xfce4-notifyd / default.nix
blob1ef2a37f7b8c78c41e178dbba8469918f1bc60ec
1 { lib
2 , mkXfceDerivation
3 , dbus
4 , glib
5 , gtk3
6 , gtk-layer-shell
7 , libcanberra-gtk3
8 , libnotify
9 , libX11
10 , libxfce4ui
11 , libxfce4util
12 , sqlite
13 , xfce4-panel
14 , xfconf
17 mkXfceDerivation {
18   category = "apps";
19   pname = "xfce4-notifyd";
20   version = "0.9.6";
21   odd-unstable = false;
23   sha256 = "sha256-TxVz9fUvuS5bl9eq9isalez3/Pro366TGFMBQ2DfIVI=";
25   buildInputs = [
26     dbus
27     gtk3
28     gtk-layer-shell
29     glib
30     libcanberra-gtk3
31     libnotify
32     libX11
33     libxfce4ui
34     libxfce4util
35     sqlite
36     xfce4-panel
37     xfconf
38   ];
40   configureFlags = [
41     "--enable-dbus-start-daemon"
42     "--enable-sound"
43   ];
45   meta = with lib; {
46     description = "Simple notification daemon for Xfce";
47     mainProgram = "xfce4-notifyd-config";
48     maintainers = with maintainers; [ ] ++ teams.xfce.members;
49   };