Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / xfce / applications / xfce4-notifyd / default.nix
blobc7a1f94177e8aad3b0ad6b9a25d7ead3a6c6b6c0
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.4";
21   odd-unstable = false;
23   sha256 = "sha256-oDvP2xE/KvIKl7D5hAwROxhqpli7G/UNd51YCdT7Dv4=";
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   env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
42   configureFlags = [
43     "--enable-dbus-start-daemon"
44     "--enable-sound"
45   ];
47   meta = with lib; {
48     description = "Simple notification daemon for Xfce";
49     mainProgram = "xfce4-notifyd-config";
50     maintainers = with maintainers; [ ] ++ teams.xfce.members;
51   };