nixpkgs/pkgs/desktops/xfce/applications/xfce4-notifyd/default.nix
2021-12-08 11:34:00 -03:00

22 lines
548 B
Nix

{ lib, mkXfceDerivation, glib, gtk3, libnotify, libxfce4ui, libxfce4util
, xfce4-panel, xfconf }:
mkXfceDerivation {
category = "apps";
pname = "xfce4-notifyd";
version = "0.6.2";
sha256 = "sha256-Gomehef68+mOgGFDaH48jG51nbaV4ruN925h71w7FuE=";
buildInputs = [ gtk3 glib libnotify libxfce4ui libxfce4util xfce4-panel xfconf ];
configureFlags = [
"--enable-dbus-start-daemon"
];
meta = with lib; {
description = "Simple notification daemon for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}